• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/WebCore-7600.1.25/inspector/

Lines Matching +defs:url +defs:cookie

139     static void willSendXMLHttpRequest(ScriptExecutionContext*, const String& url);
140 static void didScheduleResourceRequest(Document*, const String& url);
154 static InspectorInstrumentationCookie willEvaluateScript(Frame*, const String& url, int lineNumber);
192 static void didFinishXHRLoading(ScriptExecutionContext*, ThreadableLoaderClient*, unsigned long identifier, const String& sourceString, const String& url, const String& sendURL, unsigned sendLineNumber, unsigned sendColumnNumber);
337 static void willSendXMLHttpRequestImpl(InstrumentingAgents*, const String& url);
338 static void didScheduleResourceRequestImpl(InstrumentingAgents*, const String& url, Frame*);
352 static InspectorInstrumentationCookie willEvaluateScriptImpl(InstrumentingAgents*, const String& url, int lineNumber, Frame*);
391 static void didFinishXHRLoadingImpl(InstrumentingAgents*, ThreadableLoaderClient*, unsigned long identifier, const String& sourceString, const String& url, const String& sendURL, unsigned sendLineNumber, unsigned sendColumnNumber);
793 inline void InspectorInstrumentation::willSendXMLHttpRequest(ScriptExecutionContext* context, const String& url)
798 willSendXMLHttpRequestImpl(instrumentingAgents, url);
801 UNUSED_PARAM(url);
805 inline void InspectorInstrumentation::didScheduleResourceRequest(Document* document, const String& url)
810 didScheduleResourceRequestImpl(instrumentingAgents, url, document->frame());
813 UNUSED_PARAM(url);
858 inline void InspectorInstrumentation::didCallFunction(const InspectorInstrumentationCookie& cookie, ScriptExecutionContext* context)
862 if (cookie.isValid())
863 didCallFunctionImpl(cookie, context);
865 UNUSED_PARAM(cookie);
883 inline void InspectorInstrumentation::didDispatchXHRReadyStateChangeEvent(const InspectorInstrumentationCookie& cookie)
887 if (cookie.isValid())
888 didDispatchXHRReadyStateChangeEventImpl(cookie);
890 UNUSED_PARAM(cookie);
908 inline void InspectorInstrumentation::didDispatchEvent(const InspectorInstrumentationCookie& cookie)
912 if (cookie.isValid())
913 didDispatchEventImpl(cookie);
915 UNUSED_PARAM(cookie);
932 inline void InspectorInstrumentation::didHandleEvent(const InspectorInstrumentationCookie& cookie)
936 if (cookie.isValid())
937 didHandleEventImpl(cookie);
939 UNUSED_PARAM(cookie);
957 inline void InspectorInstrumentation::didDispatchEventOnWindow(const InspectorInstrumentationCookie& cookie)
961 if (cookie.isValid())
962 didDispatchEventOnWindowImpl(cookie);
964 UNUSED_PARAM(cookie);
968 inline InspectorInstrumentationCookie InspectorInstrumentation::willEvaluateScript(Frame* frame, const String& url, int lineNumber)
973 return willEvaluateScriptImpl(instrumentingAgents, url, lineNumber, frame);
976 UNUSED_PARAM(url);
982 inline void InspectorInstrumentation::didEvaluateScript(const InspectorInstrumentationCookie& cookie, Frame* frame)
986 if (cookie.isValid())
987 didEvaluateScriptImpl(cookie, frame);
989 UNUSED_PARAM(cookie);
1032 inline void InspectorInstrumentation::didFireTimer(const InspectorInstrumentationCookie& cookie)
1036 if (cookie.isValid())
1037 didFireTimerImpl(cookie);
1039 UNUSED_PARAM(cookie);
1066 inline void InspectorInstrumentation::didLayout(const InspectorInstrumentationCookie& cookie, RenderObject* root)
1070 if (cookie.isValid())
1071 didLayoutImpl(cookie, root);
1073 UNUSED_PARAM(cookie);
1102 inline void InspectorInstrumentation::didDispatchXHRLoadEvent(const InspectorInstrumentationCookie& cookie)
1106 if (cookie.isValid())
1107 didDispatchXHRLoadEventImpl(cookie);
1109 UNUSED_PARAM(cookie);
1171 inline void InspectorInstrumentation::didRecalculateStyle(const InspectorInstrumentationCookie& cookie)
1175 if (cookie.isValid())
1176 didRecalculateStyleImpl(cookie);
1178 UNUSED_PARAM(cookie);
1270 inline void InspectorInstrumentation::didReceiveResourceData(const InspectorInstrumentationCookie& cookie)
1274 if (cookie.isValid())
1275 didReceiveResourceDataImpl(cookie);
1277 UNUSED_PARAM(cookie);
1294 inline void InspectorInstrumentation::didReceiveResourceResponse(const InspectorInstrumentationCookie& cookie, unsigned long identifier, DocumentLoader* loader, const ResourceResponse& response, ResourceLoader* resourceLoader)
1298 if (cookie.isValid())
1299 didReceiveResourceResponseImpl(cookie, identifier, loader, response, resourceLoader);
1301 UNUSED_PARAM(cookie);
1400 inline void InspectorInstrumentation::willLoadXHR(ScriptExecutionContext* context, ThreadableLoaderClient* client, const String& method, const URL& url, bool async, PassRefPtr<FormData> formData, const HTTPHeaderMap& headers, bool includeCredentials)
1404 willLoadXHRImpl(instrumentingAgents, client, method, url, async, formData, headers, includeCredentials);
1409 UNUSED_PARAM(url);
1429 inline void InspectorInstrumentation::didFinishXHRLoading(ScriptExecutionContext* context, ThreadableLoaderClient* client, unsigned long identifier, const String& sourceString, const String& url, const String& sendURL, unsigned sendLineNumber, unsigned sendColumnNumber)
1433 didFinishXHRLoadingImpl(instrumentingAgents, client, identifier, sourceString, url, sendURL, sendLineNumber, sendColumnNumber);
1439 UNUSED_PARAM(url);
1628 inline void InspectorInstrumentation::didRunJavaScriptDialog(const InspectorInstrumentationCookie& cookie)
1632 if (cookie.isValid())
1633 didRunJavaScriptDialogImpl(cookie);
1635 UNUSED_PARAM(cookie);
1662 inline void InspectorInstrumentation::didWriteHTML(const InspectorInstrumentationCookie& cookie, unsigned endLine)
1666 if (cookie.isValid())
1667 didWriteHTMLImpl(cookie, endLine);
1669 UNUSED_PARAM(cookie);
1702 inline void InspectorInstrumentation::didStartWorkerGlobalScope(ScriptExecutionContext* context, WorkerGlobalScopeProxy* proxy, const URL& url)
1706 didStartWorkerGlobalScopeImpl(instrumentingAgents, proxy, url);
1710 UNUSED_PARAM(url);
2018 inline void InspectorInstrumentation::didFireAnimationFrame(const InspectorInstrumentationCookie& cookie)
2022 if (cookie.isValid())
2023 didFireAnimationFrameImpl(cookie);
2025 UNUSED_PARAM(cookie);