Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(324)

Unified Diff: Source/bindings/core/v8/ScriptPreprocessor.h

Issue 707213002: bindings: Explicitly passes a v8::Isolate to DOMDataStore. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/bindings/core/v8/ScriptController.cpp ('k') | Source/bindings/core/v8/ScriptPreprocessor.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/ScriptPreprocessor.h
diff --git a/Source/bindings/core/v8/ScriptPreprocessor.h b/Source/bindings/core/v8/ScriptPreprocessor.h
index 7dc15b9420d0a5fe223112f03b087e7ce1032e4d..ac0d2e9a8d93902e5006f9238e41cc8ab77f6ea2 100644
--- a/Source/bindings/core/v8/ScriptPreprocessor.h
+++ b/Source/bindings/core/v8/ScriptPreprocessor.h
@@ -36,11 +36,12 @@
namespace blink {
class ScriptSourceCode;
+class ScriptState;
class ScriptPreprocessor {
WTF_MAKE_NONCOPYABLE(ScriptPreprocessor);
public:
- ScriptPreprocessor(const ScriptSourceCode&, LocalFrame*);
+ ScriptPreprocessor(const ScriptSourceCode&, LocalFrame*, v8::Isolate*);
haraken 2014/11/07 17:20:01 Put the isolate parameter to the first.
Yuki 2014/11/10 07:45:38 Done.
String preprocessSourceCode(const String& sourceCode, const String& sourceName);
String preprocessSourceCode(const String& sourceCode, const String& sourceName, const String& functionName);
bool isPreprocessing() { return m_isPreprocessing; }
« no previous file with comments | « Source/bindings/core/v8/ScriptController.cpp ('k') | Source/bindings/core/v8/ScriptPreprocessor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698