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; } |