Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: test/BaseJsTest.cpp

Issue 6233220328718336: Issue #3593, #1197- fix isolate management (Closed)
Patch Set: make ScopedV8Isolate uncopyable Created Jan. 22, 2016, 10:39 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: test/BaseJsTest.cpp
diff --git a/test/BaseJsTest.cpp b/test/BaseJsTest.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..5b864119bf43ca62673076fe2a15d9931b33778d
--- /dev/null
+++ b/test/BaseJsTest.cpp
@@ -0,0 +1,24 @@
+/*
+* This file is part of Adblock Plus <https://adblockplus.org/>,
+* Copyright (C) 2006-2015 Eyeo GmbH
+*
+* Adblock Plus is free software: you can redistribute it and/or modify
+* it under the terms of the GNU General Public License version 3 as
+* published by the Free Software Foundation.
+*
+* Adblock Plus is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "BaseJsTest.h"
+
+AdblockPlus::JsEnginePtr createJsEngine(const AdblockPlus::AppInfo& appInfo)
+{
+ static AdblockPlus::ScopedV8IsolatePtr isolate = std::make_shared<AdblockPlus::ScopedV8Isolate>();
Eric 2016/01/26 14:48:58 What's the motivation for using a single isolate f
sergei 2016/01/27 15:06:10 Have you read the description of the codereview?
Eric 2016/01/27 17:21:02 Yes. It wasn't clear. It's only slightly more clea
+ return AdblockPlus::JsEngine::New(appInfo, isolate);
+}

Powered by Google App Engine
This is Rietveld