Index: Source/core/inspector/InspectorDebuggerAgent.h |
diff --git a/Source/core/inspector/InspectorDebuggerAgent.h b/Source/core/inspector/InspectorDebuggerAgent.h |
index 687bacb78cc53d1f4a7c4bafa97cef170ff47b06..8c2e41cdc7745e0ff307dca3cc0290035d65576c 100644 |
--- a/Source/core/inspector/InspectorDebuggerAgent.h |
+++ b/Source/core/inspector/InspectorDebuggerAgent.h |
@@ -94,7 +94,7 @@ public: |
bool isPaused(); |
bool runningNestedMessageLoop(); |
void addMessageToConsole(MessageSource, MessageType, MessageLevel, const String&, PassRefPtr<ScriptCallStack>, unsigned long); |
aandrey
2014/03/20 06:21:55
why is this PassRefPtr not converted?
|
- void addMessageToConsole(MessageSource, MessageType, MessageLevel, const String&, ScriptState*, PassRefPtr<ScriptArguments>, unsigned long); |
+ void addMessageToConsole(MessageSource, MessageType, MessageLevel, const String&, ScriptState*, ScriptArguments*, unsigned long); |
String preprocessEventListener(LocalFrame*, const String& source, const String& url, const String& functionName); |
PassOwnPtr<ScriptSourceCode> preprocess(LocalFrame*, const ScriptSourceCode&); |
@@ -154,7 +154,7 @@ public: |
void didRemoveAllEventListeners(EventTarget*); |
void willHandleEvent(EventTarget*, const AtomicString& eventType, EventListener*, bool useCapture); |
void didHandleEvent(); |
- void willLoadXHR(XMLHttpRequest*, ThreadableLoaderClient*, const AtomicString& method, const KURL&, bool async, PassRefPtr<FormData> body, const HTTPHeaderMap& headers, bool includeCrendentials); |
+ void willLoadXHR(XMLHttpRequest*, ThreadableLoaderClient*, const AtomicString& method, const KURL&, bool async, FormData* body, const HTTPHeaderMap& headers, bool includeCrendentials); |
void didEnqueueMutationRecord(ExecutionContext*, MutationObserver*); |
void didClearAllMutationRecords(ExecutionContext*, MutationObserver*); |
void willDeliverMutationRecords(ExecutionContext*, MutationObserver*); |