| Index: Source/core/inspector/InjectedScript.h
|
| diff --git a/Source/core/inspector/InjectedScript.h b/Source/core/inspector/InjectedScript.h
|
| index 05cfcf320fb4b7d39dbe18095f098e5d26973b11..5397705c5f1bb49a491c2e51d069d0aa8452f3da 100644
|
| --- a/Source/core/inspector/InjectedScript.h
|
| +++ b/Source/core/inspector/InjectedScript.h
|
| @@ -50,32 +50,9 @@ public:
|
| InjectedScript();
|
| ~InjectedScript() { }
|
|
|
| - void evaluate(ErrorString*,
|
| - const String& expression,
|
| - const String& objectGroup,
|
| - bool includeCommandLineAPI,
|
| - bool returnByValue,
|
| - bool generatePreview,
|
| - RefPtr<TypeBuilder::Runtime::RemoteObject>* result,
|
| - TypeBuilder::OptOutput<bool>* wasThrown);
|
| - void callFunctionOn(ErrorString*,
|
| - const String& objectId,
|
| - const String& expression,
|
| - const String& arguments,
|
| - bool returnByValue,
|
| - bool generatePreview,
|
| - RefPtr<TypeBuilder::Runtime::RemoteObject>* result,
|
| - TypeBuilder::OptOutput<bool>* wasThrown);
|
| - void evaluateOnCallFrame(ErrorString*,
|
| - const ScriptValue& callFrames,
|
| - const String& callFrameId,
|
| - const String& expression,
|
| - const String& objectGroup,
|
| - bool includeCommandLineAPI,
|
| - bool returnByValue,
|
| - bool generatePreview,
|
| - RefPtr<TypeBuilder::Runtime::RemoteObject>* result,
|
| - TypeBuilder::OptOutput<bool>* wasThrown);
|
| + void evaluate(ErrorString*, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool forceObjectId, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown);
|
| + void callFunctionOn(ErrorString*, const String& objectId, const String& expression, const String& arguments, bool returnByValue, bool forceObjectId, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown);
|
| + void evaluateOnCallFrame(ErrorString*, const ScriptValue& callFrames, const String& callFrameId, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool forceObjectId, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown);
|
| void restartFrame(ErrorString*, const ScriptValue& callFrames, const String& callFrameId, RefPtr<JSONObject>* result);
|
| void getStepInPositions(ErrorString*, const ScriptValue& callFrames, const String& callFrameId, RefPtr<TypeBuilder::Array<TypeBuilder::Debugger::Location> >& positions);
|
| void setVariableValue(ErrorString*, const ScriptValue& callFrames, const String* callFrameIdOpt, const String* functionObjectIdOpt, int scopeNumber, const String& variableName, const String& newValueStr);
|
|
|