Searched refs:InspectorInstrumentation (Results 1 - 25 of 76) sorted by relevance

1234

/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DInspectorInstrumentation.cpp35 #include "InspectorInstrumentation.h"
97 int InspectorInstrumentation::s_frontendCounter = 0;
154 void InspectorInstrumentation::didClearWindowObjectInWorldImpl(InstrumentingAgents* instrumentingAgents, Frame* frame, DOMWrapperWorld* world)
173 bool InspectorInstrumentation::isDebuggerPausedImpl(InstrumentingAgents* instrumentingAgents)
182 void InspectorInstrumentation::willInsertDOMNodeImpl(InstrumentingAgents* instrumentingAgents, Node* parent)
190 void InspectorInstrumentation::didInsertDOMNodeImpl(InstrumentingAgents* instrumentingAgents, Node* node)
200 void InspectorInstrumentation::willRemoveDOMNodeImpl(InstrumentingAgents* instrumentingAgents, Node* node)
208 void InspectorInstrumentation::didRemoveDOMNodeImpl(InstrumentingAgents* instrumentingAgents, Node* node)
218 void InspectorInstrumentation::willModifyDOMAttrImpl(InstrumentingAgents* instrumentingAgents, Element* element, const AtomicString& oldValue, const AtomicString& newValue)
228 void InspectorInstrumentation
[all...]
H A DInspectorCanvasInstrumentation.h35 #include "InspectorInstrumentation.h"
41 ScriptObject InspectorInstrumentation::wrapCanvas2DRenderingContextForInstrumentation(Document* document, const ScriptObject& context)
56 ScriptObject InspectorInstrumentation::wrapWebGLRenderingContextForInstrumentation(Document* document, const ScriptObject& glContext)
H A DInspectorConsoleInstrumentation.h34 #include "InspectorInstrumentation.h"
42 inline void InspectorInstrumentation::addMessageToConsole(Page* page, MessageSource source, MessageType type, MessageLevel level, const String& message, PassRefPtr<ScriptCallStack> callStack, unsigned long requestIdentifier)
58 inline void InspectorInstrumentation::addMessageToConsole(Page* page, MessageSource source, MessageType type, MessageLevel level, const String& message, ScriptState* state, PassRefPtr<ScriptArguments> arguments, unsigned long requestIdentifier)
75 inline void InspectorInstrumentation::addMessageToConsole(Page* page, MessageSource source, MessageType type, MessageLevel level, const String& message, const String& scriptId, unsigned lineNumber, unsigned columnNumber, ScriptState* state, unsigned long requestIdentifier)
94 inline void InspectorInstrumentation::addMessageToConsole(WorkerContext* workerContext, MessageSource source, MessageType type, MessageLevel level, const String& message, PassRefPtr<ScriptCallStack> callStack, unsigned long requestIdentifier)
110 inline void InspectorInstrumentation::addMessageToConsole(WorkerContext* workerContext, MessageSource source, MessageType type, MessageLevel level, const String& message, const String& scriptId, unsigned lineNumber, unsigned columnNumber, ScriptState* state, unsigned long requestIdentifier)
130 inline void InspectorInstrumentation::consoleCount(Page* page, ScriptState* state, PassRefPtr<ScriptArguments> arguments)
142 inline void InspectorInstrumentation::startConsoleTiming(Frame* frame, const String& title)
153 inline void InspectorInstrumentation::stopConsoleTiming(Frame* frame, const String& title, PassRefPtr<ScriptCallStack> stack)
165 inline void InspectorInstrumentation
[all...]
H A DInspectorInstrumentation.h68 class InspectorInstrumentation;
106 friend class InspectorInstrumentation;
116 class InspectorInstrumentation { class in namespace:WebCore
526 inline void InspectorInstrumentation::didClearWindowObjectInWorld(Frame* frame, DOMWrapperWorld* world)
537 inline bool InspectorInstrumentation::isDebuggerPaused(Frame* frame)
549 inline void InspectorInstrumentation::willInsertDOMNode(Document* document, Node* parent)
561 inline void InspectorInstrumentation::didInsertDOMNode(Document* document, Node* node)
573 inline void InspectorInstrumentation::willRemoveDOMNode(Document* document, Node* node)
587 inline void InspectorInstrumentation::willModifyDOMAttr(Document* document, Element* element, const AtomicString& oldValue, const AtomicString& newValue)
601 inline void InspectorInstrumentation
[all...]
H A DInspectorDatabaseInstrumentation.h35 #include "InspectorInstrumentation.h"
41 inline void InspectorInstrumentation::didOpenDatabase(ScriptExecutionContext* context, PassRefPtr<Database> database, const String& domain, const String& name, const String& version)
H A DInjectedScriptBase.cpp37 #include "InspectorInstrumentation.h"
79 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willCallFunction(scriptExecutionContext, name(), 1);
95 InspectorInstrumentation::didCallFunction(cookie);
H A DWorkerInspectorController.h49 class InspectorInstrumentation;
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DConsole.cpp84 InspectorInstrumentation::addMessageToConsole(page, ConsoleAPIMessageSource, type, level, message, state, arguments);
174 InspectorInstrumentation::consoleCount(page(), state, arguments);
186 if (!InspectorInstrumentation::profilerEnabled(page))
191 resolvedTitle = InspectorInstrumentation::getCurrentUserInitiatedProfileName(page, true);
197 InspectorInstrumentation::addStartProfilingMessageToConsole(page, resolvedTitle, lastCaller.lineNumber(), lastCaller.columnNumber(), lastCaller.sourceURL());
206 if (!InspectorInstrumentation::profilerEnabled(page))
215 InspectorInstrumentation::addProfile(page, profile, callStack);
222 InspectorInstrumentation::startConsoleTiming(m_frame, title);
228 InspectorInstrumentation::stopConsoleTiming(m_frame, title, callStack.release());
233 InspectorInstrumentation
[all...]
H A DScreen.cpp36 #include "InspectorInstrumentation.h"
53 InspectorInstrumentation::applyScreenHeightOverride(m_frame, &height);
62 InspectorInstrumentation::applyScreenWidthOverride(m_frame, &width);
H A DDOMTimer.cpp30 #include "InspectorInstrumentation.h"
89 InspectorInstrumentation::didInstallTimer(context, timer->m_timeoutId, timeout, singleShot);
102 InspectorInstrumentation::didRemoveTimer(context, timeoutId);
115 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willFireTimer(context, m_timeoutId);
129 InspectorInstrumentation::didFireTimer(cookie);
142 InspectorInstrumentation::didFireTimer(cookie);
H A DChrome.cpp41 #include "InspectorInstrumentation.h"
100 InspectorInstrumentation::didScroll(m_page);
296 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willRunJavaScriptDialog(m_page, message);
298 InspectorInstrumentation::didRunJavaScriptDialog(cookie);
320 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willRunJavaScriptDialog(m_page, displayMessage);
322 InspectorInstrumentation::didRunJavaScriptDialog(cookie);
338 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willRunJavaScriptDialog(m_page, displayMessage);
340 InspectorInstrumentation::didRunJavaScriptDialog(cookie);
357 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willRunJavaScriptDialog(m_page, displayPrompt);
359 InspectorInstrumentation
[all...]
H A DPageConsole.cpp164 InspectorInstrumentation::addMessageToConsole(page, source, LogMessageType, level, message, callStack, requestIdentifier);
166 InspectorInstrumentation::addMessageToConsole(page, source, LogMessageType, level, message, url, lineNumber, columnNumber, state, requestIdentifier);
/macosx-10.9.5/WebCore-7537.78.1/loader/
H A DResourceLoadNotifier.cpp38 #include "InspectorInstrumentation.h"
100 InspectorInstrumentation::didFailLoading(m_frame, loader->documentLoader(), loader->identifier(), error);
119 InspectorInstrumentation::willSendRequest(m_frame, identifier, loader, request, redirectResponse);
132 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willReceiveResourceResponse(m_frame, identifier, r);
134 InspectorInstrumentation::didReceiveResourceResponse(cookie, identifier, loader, r, resourceLoader);
141 InspectorInstrumentation::didReceiveData(m_frame, identifier, data, dataLength, encodedDataLength);
148 InspectorInstrumentation::didFinishLoading(m_frame, loader, identifier, finishTime);
155 InspectorInstrumentation::didFailLoading(m_frame, loader, identifier, error);
H A DDocumentThreadableLoader.cpp43 #include "InspectorInstrumentation.h"
251 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willReceiveResourceResponse(m_document->frame(), identifier, response);
252 InspectorInstrumentation::didReceiveResourceResponse(cookie, identifier, loader, response, 0);
294 InspectorInstrumentation::didReceiveData(m_document->frame(), identifier, 0, 0, dataLength);
317 InspectorInstrumentation::didFinishLoading(m_document->frame(), m_document->frame()->loader()->documentLoader(), identifier, finishTime);
330 InspectorInstrumentation::didFailLoading(m_document->frame(), m_document->frame()->loader()->documentLoader(), identifier, error);
354 InspectorInstrumentation::didFailLoading(m_document->frame(), m_document->frame()->loader()->documentLoader(), identifier, error);
389 InspectorInstrumentation::documentThreadableLoaderStartedLoadingForClient(m_document, identifier, m_client);
405 InspectorInstrumentation::documentThreadableLoaderStartedLoadingForClient(m_document, identifier, m_client);
/macosx-10.9.5/WebCore-7537.78.1/workers/
H A DWorker.cpp44 #include "InspectorInstrumentation.h"
137 InspectorInstrumentation::didReceiveScriptResponse(scriptExecutionContext(), identifier);
146 if (InspectorInstrumentation::shouldPauseDedicatedWorkerOnStart(scriptExecutionContext()))
149 InspectorInstrumentation::scriptImported(scriptExecutionContext(), m_scriptLoader->identifier(), m_scriptLoader->script());
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DScriptedAnimationController.cpp34 #include "InspectorInstrumentation.h"
108 InspectorInstrumentation::didRequestAnimationFrame(m_document, id);
120 InspectorInstrumentation::didCancelAnimationFrame(m_document, id);
147 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willFireAnimationFrame(m_document, callback->m_id);
152 InspectorInstrumentation::didFireAnimationFrame(cookie);
H A DElementShadow.cpp31 #include "InspectorInstrumentation.h"
54 InspectorInstrumentation::didPushShadowRoot(shadowHost, m_shadowRoot.get());
65 InspectorInstrumentation::willPopShadowRoot(shadowHost, oldRoot.get());
H A DNamedFlowCollection.cpp35 #include "InspectorInstrumentation.h"
84 InspectorInstrumentation::didCreateNamedFlow(document(), newFlow.get());
98 InspectorInstrumentation::willRemoveNamedFlow(document(), namedFlow);
H A DDeviceOrientationController.cpp33 #include "InspectorInstrumentation.h"
52 orientation = InspectorInstrumentation::overrideDeviceOrientation(m_page, orientation);
/macosx-10.9.5/WebCore-7537.78.1/loader/mac/
H A DResourceLoaderMac.mm36 #include "InspectorInstrumentation.h"
107 // FIXME: didReceiveData() passes encoded data length to InspectorInstrumentation, but it is not available here.
109 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willReceiveResourceData(m_frame.get(), identifier(), dataLength);
111 InspectorInstrumentation::didReceiveResourceData(cookie);
/macosx-10.9.5/WebCore-7537.78.1/bindings/js/
H A DJSMainThreadExecState.h29 #include "InspectorInstrumentation.h"
61 if (!InspectorInstrumentation::timelineAgentEnabled(context))
70 return InspectorInstrumentation::willCallFunction(context, resourceName, lineNumber);
H A DJSHTMLCanvasElementCustom.cpp87 if (InspectorInstrumentation::canvasAgentEnabled(canvas->document())) {
91 wrapped = InspectorInstrumentation::wrapCanvas2DRenderingContextForInstrumentation(canvas->document(), contextObject);
94 wrapped = InspectorInstrumentation::wrapWebGLRenderingContextForInstrumentation(canvas->document(), contextObject);
H A DJSCallbackData.cpp80 InspectorInstrumentation::didCallFunction(cookie);
H A DJSMutationCallback.cpp91 InspectorInstrumentation::didCallFunction(cookie);
H A DScriptCallStackFactory.cpp35 #include "InspectorInstrumentation.h"
135 if (InspectorInstrumentation::hasFrontends()) {
137 if (InspectorInstrumentation::consoleAgentEnabled(scriptExecutionContext))

Completed in 270 milliseconds

1234