Home
last modified time | relevance | path

Searched refs:consoleProfile (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DProfilesPanelDescriptor.js65 consoleProfile: function(protocolId, scriptLocation, title) {}, method in WebInspector.CPUProfilerModelDelegate
124 consoleProfile: function(id, scriptLocation, title) method in WebInspector.CPUProfilerModel
128 this._delegate.consoleProfile(id, scriptLocation, title);
DCPUProfileView.js691 consoleProfile: function(id, scriptLocation, title) method in WebInspector.CPUProfileType
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorProfilerAgent.h59 void consoleProfile(const String& title, ScriptState*);
DInspectorProfilerAgent.cpp105 void InspectorProfilerAgent::consoleProfile(const String& title, ScriptState* state) in consoleProfile() function in WebCore::InspectorProfilerAgent
111 m_frontend->consoleProfile(id, currentDebugLocation(), title.isNull() ? 0 : &title); in consoleProfile()
DInspectorInstrumentation.idl484 void consoleProfile(ExecutionContext* context, const String& title, ScriptState* state);
/external/chromium_org/third_party/WebKit/Source/core/frame/
DConsoleBase.cpp116 InspectorInstrumentation::consoleProfile(context(), title, state); in profile()