HomeSort by relevance Sort by last modified time
    Searched refs:debuggerAgent (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptHost.cpp 120 if (InspectorDebuggerAgent* debuggerAgent = m_instrumentingAgents ? m_instrumentingAgents->inspectorDebuggerAgent() : 0)
121 debuggerAgent->setBreakpoint(scriptId, lineNumber, columnNumber, InspectorDebuggerAgent::DebugCommandBreakpointSource);
126 if (InspectorDebuggerAgent* debuggerAgent = m_instrumentingAgents ? m_instrumentingAgents->inspectorDebuggerAgent() : 0)
127 debuggerAgent->removeBreakpoint(scriptId, lineNumber, columnNumber, InspectorDebuggerAgent::DebugCommandBreakpointSource);
139 if (InspectorDebuggerAgent* debuggerAgent = m_instrumentingAgents ? m_instrumentingAgents->inspectorDebuggerAgent() : 0)
140 debuggerAgent->setBreakpoint(scriptId, lineNumber, columnNumber, InspectorDebuggerAgent::MonitorCommandBreakpointSource, builder.toString());
145 if (InspectorDebuggerAgent* debuggerAgent = m_instrumentingAgents ? m_instrumentingAgents->inspectorDebuggerAgent() : 0)
146 debuggerAgent->removeBreakpoint(scriptId, lineNumber, columnNumber, InspectorDebuggerAgent::MonitorCommandBreakpointSource);
InspectorInstrumentation.cpp 96 if (InspectorDebuggerAgent* debuggerAgent = instrumentingAgents->inspectorDebuggerAgent())
97 return debuggerAgent->isPaused();
137 if (InspectorDebuggerAgent* debuggerAgent = instrumentingAgents->inspectorDebuggerAgent())
138 return debuggerAgent->preprocess(frame, sourceCode);
144 if (InspectorDebuggerAgent* debuggerAgent = instrumentingAgents->inspectorDebuggerAgent())
145 return debuggerAgent->preprocessEventListener(frame, source, url, functionName);
154 if (InspectorDebuggerAgent* debuggerAgent = instrumentingAgents->inspectorDebuggerAgent())
155 callStack->setAsyncCallStack(debuggerAgent->currentAsyncStackTraceForConsole());
InspectorController.cpp 197 InspectorDebuggerAgent* debuggerAgent = debuggerAgentPtr.get();
200 m_agents.append(InspectorDOMDebuggerAgent::create(m_domAgent, debuggerAgent));
436 if (InspectorDebuggerAgent* debuggerAgent = m_instrumentingAgents->inspectorDebuggerAgent()) {
438 debuggerAgent->resume(&error);
InspectorDOMDebuggerAgent.cpp 82 PassOwnPtrWillBeRawPtr<InspectorDOMDebuggerAgent> InspectorDOMDebuggerAgent::create(InspectorDOMAgent* domAgent, InspectorDebuggerAgent* debuggerAgent)
84 return adoptPtrWillBeNoop(new InspectorDOMDebuggerAgent(domAgent, debuggerAgent));
87 InspectorDOMDebuggerAgent::InspectorDOMDebuggerAgent(InspectorDOMAgent* domAgent, InspectorDebuggerAgent* debuggerAgent)
90 , m_debuggerAgent(debuggerAgent)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
Script.js 121 this.target().debuggerAgent().getScriptSource(this.scriptId, didGetScriptSource.bind(this));
152 this.target().debuggerAgent().searchInContent(this.scriptId, query, caseSensitive, isRegex, innerCallback);
171 * @param {function(?Protocol.Error, !DebuggerAgent.SetScriptSourceError=, !Array.<!DebuggerAgent.CallFrame>=, !DebuggerAgent.StackTrace=, boolean=)} callback
178 * @param {!DebuggerAgent.SetScriptSourceError=} errorData
179 * @param {!Array.<!DebuggerAgent.CallFrame>=} callFrames
181 * @param {!DebuggerAgent.StackTrace=} asyncStackTrace
199 this.target().debuggerAgent().setScriptSource(this.scriptId, newSource, undefined, didEditScriptSource.bind(this));
RemoteObject.js 142 * @param {function(?Array.<!DebuggerAgent.CollectionEntry>)} callback
609 * @param {function(?Array.<!DebuggerAgent.CollectionEntry>)} callback
618 this._target.debuggerAgent().getCollectionEntries(this._objectId, didGetCollectionEntries);
622 * @param {?Array.<!DebuggerAgent.CollectionEntry>} response
724 this._debuggerAgent = target.debuggerAgent();
    [all...]
DebuggerModel.js 41 this._agent = target.debuggerAgent();
67 /** @typedef {{location: ?WebInspector.DebuggerModel.Location, sourceURL: ?string, functionName: string, scopeChain: (Array.<!DebuggerAgent.Scope>|null)}} */
251 * @param {function(?DebuggerAgent.BreakpointId, !Array.<!WebInspector.DebuggerModel.Location>)=} callback
268 * @param {!DebuggerAgent.BreakpointId} breakpointId
269 * @param {!Array.<!DebuggerAgent.Location>} locations
285 * @param {function(?DebuggerAgent.BreakpointId, !Array.<!WebInspector.DebuggerModel.Location>)=} callback
293 * @param {!DebuggerAgent.BreakpointId} breakpointId
294 * @param {!DebuggerAgent.Location} actualLocation
308 * @param {!DebuggerAgent.BreakpointId} breakpointId
328 * @param {!DebuggerAgent.BreakpointId} breakpointI
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/promises/
PromisesPanel.js 57 mainTarget.debuggerAgent().enablePromiseTracker();
65 this._target.debuggerAgent().disablePromiseTracker();
71 * @param {!DebuggerAgent.PromiseDetails} p1
72 * @param {!DebuggerAgent.PromiseDetails} p2
91 * @param {?Array.<!DebuggerAgent.PromiseDetails>} promiseData
125 this._target.debuggerAgent().getPromises(callback.bind(this));
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/bindings/
ScriptSnippetModel.js 243 target.debuggerAgent().compileScript(expression, evaluationUrl, executionContext.id, compileCallback.bind(this, target));
248 * @param {!DebuggerAgent.ScriptId=} scriptId
249 * @param {?DebuggerAgent.ExceptionDetails=} exceptionDetails
275 * @param {!DebuggerAgent.ScriptId} scriptId
282 target.debuggerAgent().runScript(scriptId, executionContext.id, "console", false, runCallback.bind(this, target));
288 * @param {?DebuggerAgent.ExceptionDetails=} exceptionDetails
329 * @param {?DebuggerAgent.ExceptionDetails=} exceptionDetails
BreakpointManager.js 90 target.debuggerAgent().setBreakpointsActive(this._breakpointsActive);
432 targets[i].debuggerAgent().setBreakpointsActive(active);
845 * @param {?DebuggerAgent.BreakpointId} breakpointId
    [all...]

Completed in 384 milliseconds