| Index: inspector/InspectorBackend.h
|
| ===================================================================
|
| --- inspector/InspectorBackend.h (revision 53180)
|
| +++ inspector/InspectorBackend.h (working copy)
|
| @@ -104,7 +104,8 @@
|
| JavaScriptCallFrame* currentCallFrame() const;
|
| #endif
|
|
|
| - void dispatchOnInjectedScript(long callId, const String& methodName, const String& arguments, bool async);
|
| + void setInjectedScriptSource(const String& source);
|
| + void dispatchOnInjectedScript(long callId, long injectedScriptId, const String& methodName, const String& arguments, bool async);
|
| void getChildNodes(long callId, long nodeId);
|
| void setAttribute(long callId, long elementId, const String& name, const String& value);
|
| void removeAttribute(long callId, long elementId, const String& name);
|
| @@ -119,7 +120,7 @@
|
| void deleteCookie(const String& cookieName, const String& domain);
|
|
|
| // Generic code called from custom implementations.
|
| - void releaseWrapperObjectGroup(const String& objectGroup);
|
| + void releaseWrapperObjectGroup(long injectedScriptId, const String& objectGroup);
|
| void didEvaluateForTestInFrontend(long callId, const String& jsonResult);
|
|
|
| #if ENABLE(DATABASE)
|
|
|