| Index: Source/bindings/v8/PageScriptDebugServer.h
|
| diff --git a/Source/bindings/v8/PageScriptDebugServer.h b/Source/bindings/v8/PageScriptDebugServer.h
|
| index a305456aece3eda7a9b6f85f4846634a731877cf..ae09b7a726010d8e766911b363d8562aa6f6f3ce 100644
|
| --- a/Source/bindings/v8/PageScriptDebugServer.h
|
| +++ b/Source/bindings/v8/PageScriptDebugServer.h
|
| @@ -64,9 +64,9 @@ public:
|
| };
|
| void setClientMessageLoop(PassOwnPtr<ClientMessageLoop>);
|
|
|
| - virtual void compileScript(ScriptState*, const String& expression, const String& sourceURL, String* scriptId, String* exceptionMessage) OVERRIDE;
|
| + virtual void compileScript(ScriptState*, const String& expression, const String& sourceURL, String* scriptId, String* exceptionDetailsText, int* lineNumber, int* columnNumber, RefPtr<ScriptCallStack>* stackTrace) OVERRIDE;
|
| virtual void clearCompiledScripts() OVERRIDE;
|
| - virtual void runScript(ScriptState*, const String& scriptId, ScriptValue* result, bool* wasThrown, String* exceptionMessage) OVERRIDE;
|
| + virtual void runScript(ScriptState*, const String& scriptId, ScriptValue* result, bool* wasThrown, String* exceptionDetailsText, int* lineNumber, int* columnNumber, RefPtr<ScriptCallStack>* stackTrace) OVERRIDE;
|
| virtual void setPreprocessorSource(const String&) OVERRIDE;
|
| virtual void preprocessBeforeCompile(const v8::Debug::EventDetails&) OVERRIDE;
|
| virtual PassOwnPtr<ScriptSourceCode> preprocess(LocalFrame*, const ScriptSourceCode&) OVERRIDE;
|
|
|