HomeSort by relevance Sort by last modified time
    Searched full:inspectorinstrumentation (Results 1 - 25 of 114) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/Source/core/frame/
ConsoleBase.cpp 88 InspectorInstrumentation::addMessageToConsole(context(), ConsoleAPIMessageSource, ClearMessageType, LogMessageLevel, String(), scriptState, arguments);
106 InspectorInstrumentation::consoleCount(context(), scriptState, arguments);
111 InspectorInstrumentation::consoleTimeStamp(context(), title);
116 InspectorInstrumentation::consoleProfile(context(), title, scriptState);
121 InspectorInstrumentation::consoleProfileEnd(context(), title, scriptState);
126 InspectorInstrumentation::consoleTime(context(), title);
133 InspectorInstrumentation::consoleTimeEnd(context(), title, scriptState);
138 InspectorInstrumentation::consoleTimeStamp(context(), title);
143 InspectorInstrumentation::consoleTimeline(context(), title, scriptState);
148 InspectorInstrumentation::consoleTimelineEnd(context(), title, scriptState)
    [all...]
DOMTimer.cpp 31 #include "core/inspector/InspectorInstrumentation.h"
75 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
76 InspectorInstrumentation::didInstallTimer(context, timeoutID, timeout, singleShot);
85 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
86 InspectorInstrumentation::didRemoveTimer(context, timeoutID);
126 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
127 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willFireTimer(context, m_timeoutID);
140 InspectorInstrumentation::didFireTimer(cookie);
153 InspectorInstrumentation::didFireTimer(cookie);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ScriptedAnimationController.cpp 34 #include "core/inspector/InspectorInstrumentation.h"
89 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
90 InspectorInstrumentation::didRequestAnimationFrame(m_document, id);
101 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
102 InspectorInstrumentation::didCancelAnimationFrame(m_document, id);
111 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
112 InspectorInstrumentation::didCancelAnimationFrame(m_document, id);
136 InspectorInstrumentation::didRemoveEvent(eventTarget, events[i].get());
158 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
159 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willFireAnimationFrame(m_document, callback->m_id)
    [all...]
MutationObserver.cpp 44 #include "core/inspector/InspectorInstrumentation.h"
77 InspectorInstrumentation::didClearAllMutationRecords(m_callback->executionContext(), this);
149 InspectorInstrumentation::didClearAllMutationRecords(m_callback->executionContext(), this);
156 InspectorInstrumentation::didClearAllMutationRecords(m_callback->executionContext(), this);
210 InspectorInstrumentation::didEnqueueMutationRecord(m_callback->executionContext(), this);
252 InspectorInstrumentation::willDeliverMutationRecords(m_callback->executionContext(), this);
254 InspectorInstrumentation::didDeliverMutationRecords(m_callback->executionContext());
  /external/chromium_org/third_party/WebKit/Source/core/loader/
FrameFetchContext.cpp 36 #include "core/inspector/InspectorInstrumentation.h"
143 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
144 InspectorInstrumentation::willSendRequest(m_frame, identifier, ensureLoader(loader), request, redirectResponse, initiatorInfo);
157 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
158 InspectorInstrumentation::didReceiveResourceResponse(m_frame, identifier, ensureLoader(loader), r, resourceLoader);
165 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
166 InspectorInstrumentation::didReceiveData(m_frame, identifier, data, dataLength, encodedDataLength);
173 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
174 InspectorInstrumentation::didReceiveData(m_frame, identifier, 0, dataLength, encodedDataLength);
183 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing
    [all...]
PingLoader.cpp 39 #include "core/inspector/InspectorInstrumentation.h"
145 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
146 InspectorInstrumentation::willSendRequest(frame, m_identifier, frame->loader().documentLoader(), request, ResourceResponse(), initiatorInfo);
163 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
164 InspectorInstrumentation::didFailLoading(page->deprecatedLocalMainFrame(), m_identifier, ResourceError::cancelledError(m_url));
173 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
174 InspectorInstrumentation::didFailLoading(page->deprecatedLocalMainFrame(), m_identifier, ResourceError::cancelledError(m_url));
183 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
184 InspectorInstrumentation::didFailLoading(page->deprecatedLocalMainFrame(), m_identifier, ResourceError::cancelledError(m_url));
193 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/events/
DOMWindowEventQueue.cpp 34 #include "core/inspector/InspectorInstrumentation.h"
81 InspectorInstrumentation::didEnqueueEvent(event->target(), event.get());
97 InspectorInstrumentation::didRemoveEvent(event->target(), event);
109 if (InspectorInstrumentation::hasFrontends()) {
112 InspectorInstrumentation::didRemoveEvent((*it)->target(), it->get());
136 InspectorInstrumentation::didRemoveEvent(event->target(), event.get());
GenericEventQueue.cpp 31 #include "core/inspector/InspectorInstrumentation.h"
68 InspectorInstrumentation::didEnqueueEvent(event->target() ? event->target() : m_owner.get(), event.get());
82 InspectorInstrumentation::didRemoveEvent(event->target() ? event->target() : m_owner.get(), event);
109 InspectorInstrumentation::didRemoveEvent(target, event);
126 InspectorInstrumentation::didRemoveEvent(event->target() ? event->target() : m_owner.get(), event);
  /external/chromium_org/third_party/WebKit/Source/core/
inspector_instrumentation_sources.target.darwin-arm.mk 23 $(gyp_shared_intermediate_dir)/blink/core/InspectorCanvasInstrumentationInl.h: $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl $(GYP_TARGET_DEPENDENCIES)
24 @echo "Gyp action: Generating Inspector instrumentation code from InspectorInstrumentation.idl ($@)"
25 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/core; mkdir -p $(gyp_shared_intermediate_dir)/blink/core; python inspector/CodeGeneratorInstrumentation.py inspector/InspectorInstrumentation.idl --output_dir "$(gyp_shared_intermediate_dir)/blink/core"
inspector_instrumentation_sources.target.darwin-arm64.mk 23 $(gyp_shared_intermediate_dir)/blink/core/InspectorCanvasInstrumentationInl.h: $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl $(GYP_TARGET_DEPENDENCIES)
24 @echo "Gyp action: Generating Inspector instrumentation code from InspectorInstrumentation.idl ($@)"
25 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/core; mkdir -p $(gyp_shared_intermediate_dir)/blink/core; python inspector/CodeGeneratorInstrumentation.py inspector/InspectorInstrumentation.idl --output_dir "$(gyp_shared_intermediate_dir)/blink/core"
inspector_instrumentation_sources.target.darwin-mips.mk 23 $(gyp_shared_intermediate_dir)/blink/core/InspectorCanvasInstrumentationInl.h: $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl $(GYP_TARGET_DEPENDENCIES)
24 @echo "Gyp action: Generating Inspector instrumentation code from InspectorInstrumentation.idl ($@)"
25 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/core; mkdir -p $(gyp_shared_intermediate_dir)/blink/core; python inspector/CodeGeneratorInstrumentation.py inspector/InspectorInstrumentation.idl --output_dir "$(gyp_shared_intermediate_dir)/blink/core"
inspector_instrumentation_sources.target.darwin-x86.mk 23 $(gyp_shared_intermediate_dir)/blink/core/InspectorCanvasInstrumentationInl.h: $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl $(GYP_TARGET_DEPENDENCIES)
24 @echo "Gyp action: Generating Inspector instrumentation code from InspectorInstrumentation.idl ($@)"
25 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/core; mkdir -p $(gyp_shared_intermediate_dir)/blink/core; python inspector/CodeGeneratorInstrumentation.py inspector/InspectorInstrumentation.idl --output_dir "$(gyp_shared_intermediate_dir)/blink/core"
inspector_instrumentation_sources.target.darwin-x86_64.mk 23 $(gyp_shared_intermediate_dir)/blink/core/InspectorCanvasInstrumentationInl.h: $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl $(GYP_TARGET_DEPENDENCIES)
24 @echo "Gyp action: Generating Inspector instrumentation code from InspectorInstrumentation.idl ($@)"
25 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/core; mkdir -p $(gyp_shared_intermediate_dir)/blink/core; python inspector/CodeGeneratorInstrumentation.py inspector/InspectorInstrumentation.idl --output_dir "$(gyp_shared_intermediate_dir)/blink/core"
inspector_instrumentation_sources.target.linux-arm.mk 23 $(gyp_shared_intermediate_dir)/blink/core/InspectorCanvasInstrumentationInl.h: $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl $(GYP_TARGET_DEPENDENCIES)
24 @echo "Gyp action: Generating Inspector instrumentation code from InspectorInstrumentation.idl ($@)"
25 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/core; mkdir -p $(gyp_shared_intermediate_dir)/blink/core; python inspector/CodeGeneratorInstrumentation.py inspector/InspectorInstrumentation.idl --output_dir "$(gyp_shared_intermediate_dir)/blink/core"
inspector_instrumentation_sources.target.linux-arm64.mk 23 $(gyp_shared_intermediate_dir)/blink/core/InspectorCanvasInstrumentationInl.h: $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl $(GYP_TARGET_DEPENDENCIES)
24 @echo "Gyp action: Generating Inspector instrumentation code from InspectorInstrumentation.idl ($@)"
25 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/core; mkdir -p $(gyp_shared_intermediate_dir)/blink/core; python inspector/CodeGeneratorInstrumentation.py inspector/InspectorInstrumentation.idl --output_dir "$(gyp_shared_intermediate_dir)/blink/core"
inspector_instrumentation_sources.target.linux-mips.mk 23 $(gyp_shared_intermediate_dir)/blink/core/InspectorCanvasInstrumentationInl.h: $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl $(GYP_TARGET_DEPENDENCIES)
24 @echo "Gyp action: Generating Inspector instrumentation code from InspectorInstrumentation.idl ($@)"
25 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/core; mkdir -p $(gyp_shared_intermediate_dir)/blink/core; python inspector/CodeGeneratorInstrumentation.py inspector/InspectorInstrumentation.idl --output_dir "$(gyp_shared_intermediate_dir)/blink/core"
inspector_instrumentation_sources.target.linux-x86.mk 23 $(gyp_shared_intermediate_dir)/blink/core/InspectorCanvasInstrumentationInl.h: $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl $(GYP_TARGET_DEPENDENCIES)
24 @echo "Gyp action: Generating Inspector instrumentation code from InspectorInstrumentation.idl ($@)"
25 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/core; mkdir -p $(gyp_shared_intermediate_dir)/blink/core; python inspector/CodeGeneratorInstrumentation.py inspector/InspectorInstrumentation.idl --output_dir "$(gyp_shared_intermediate_dir)/blink/core"
inspector_instrumentation_sources.target.linux-x86_64.mk 23 $(gyp_shared_intermediate_dir)/blink/core/InspectorCanvasInstrumentationInl.h: $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/CodeGeneratorInstrumentation.py $(LOCAL_PATH)/third_party/WebKit/Source/core/inspector/InspectorInstrumentation.idl $(GYP_TARGET_DEPENDENCIES)
24 @echo "Gyp action: Generating Inspector instrumentation code from InspectorInstrumentation.idl ($@)"
25 $(hide)cd $(gyp_local_path)/third_party/WebKit/Source/core; mkdir -p $(gyp_shared_intermediate_dir)/blink/core; python inspector/CodeGeneratorInstrumentation.py inspector/InspectorInstrumentation.idl --output_dir "$(gyp_shared_intermediate_dir)/blink/core"
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerEventQueue.cpp 33 #include "core/inspector/InspectorInstrumentation.h"
108 InspectorInstrumentation::didRemoveEvent(event->target(), event);
117 InspectorInstrumentation::didEnqueueEvent(event->target(), event.get());
140 InspectorInstrumentation::didRemoveEvent(event->target(), event);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
BUILD.gn 45 "InspectorInstrumentation.idl",
58 rebase_path("InspectorInstrumentation.idl", root_build_dir),
InspectorInstrumentationCustomInl.h 36 namespace InspectorInstrumentation {
79 } // namespace InspectorInstrumentation
  /external/chromium_org/third_party/WebKit/Source/core/page/
Chrome.cpp 29 #include "core/inspector/InspectorInstrumentation.h"
79 InspectorInstrumentation::didScroll(m_page);
209 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willRunJavaScriptDialog(m_page, message);
211 InspectorInstrumentation::didRunJavaScriptDialog(cookie);
232 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willRunJavaScriptDialog(m_page, message);
234 InspectorInstrumentation::didRunJavaScriptDialog(cookie);
249 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willRunJavaScriptDialog(m_page, message);
251 InspectorInstrumentation::didRunJavaScriptDialog(cookie);
267 InspectorInstrumentationCookie cookie = InspectorInstrumentation::willRunJavaScriptDialog(m_page, prompt);
269 InspectorInstrumentation::didRunJavaScriptDialog(cookie)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8WorkerGlobalScopeEventListener.cpp 42 #include "core/inspector/InspectorInstrumentation.h"
82 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
84 if (InspectorInstrumentation::timelineAgentEnabled(scriptState()->executionContext())) {
89 cookie = InspectorInstrumentation::willCallFunction(scriptState()->executionContext(), scriptId, resourceName, lineNumber);
95 InspectorInstrumentation::didCallFunction(cookie);
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
NewWebSocketChannelImpl.cpp 39 #include "core/inspector/InspectorInstrumentation.h"
166 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
167 InspectorInstrumentation::didCreateWebSocket(document(), m_identifier, url, protocol);
179 InspectorInstrumentation::didSendWebSocketFrame(document(), m_identifier, WebSocketFrame::OpCodeText, true, data.data(), data.length());
195 InspectorInstrumentation::didSendWebSocketFrame(document(), m_identifier, WebSocketFrame::OpCodeBinary, true, "", 0);
208 InspectorInstrumentation::didSendWebSocketFrame(document(), m_identifier, WebSocketFrame::OpCodeBinary, true, static_cast<const char*>(buffer.data()) + byteOffset, byteLength);
224 InspectorInstrumentation::didSendWebSocketFrame(document(), m_identifier, WebSocketFrame::OpCodeBinary, true, data->data(), data->size());
245 InspectorInstrumentation::didReceiveWebSocketFrameError(document(), m_identifier, reason);
263 // FIXME(361045): remove InspectorInstrumentation calls once DevTools Timeline migrates to tracing.
264 InspectorInstrumentation::didCloseWebSocket(document(), m_identifier)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8HTMLCanvasElementCustom.cpp 102 if (InspectorInstrumentation::canvasAgentEnabled(&impl->document())) {
105 ScriptValue wrapped = InspectorInstrumentation::wrapCanvas2DRenderingContextForInstrumentation(&impl->document(), context);
116 if (InspectorInstrumentation::canvasAgentEnabled(&impl->document())) {
119 ScriptValue wrapped = InspectorInstrumentation::wrapWebGLRenderingContextForInstrumentation(&impl->document(), glContext);

Completed in 4109 milliseconds

1 2 3 4 5