Searched defs:callFrameId (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInjectedScript.cpp82 void InjectedScript::evaluateOnCallFrame(ErrorString* errorString, const ScriptValue& callFrames, const String& callFrameId, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown) argument
86 function.appendArgument(callFrameId);
95 void InjectedScript::restartFrame(ErrorString* errorString, const ScriptValue& callFrames, const String& callFrameId, RefPtr<JSONObject>* result) argument
99 function.appendArgument(callFrameId);
115 void InjectedScript::getStepInPositions(ErrorString* errorString, const ScriptValue& callFrames, const String& callFrameId, RefPtr<Array<TypeBuilder::Debugger::Location> >& positions) argument
119 function.appendArgument(callFrameId);
299 ScriptValue InjectedScript::findCallFrameById(ErrorString* errorString, const ScriptValue& topCallFrame, const String& callFrameId) argument
303 function.appendArgument(callFrameId);
H A DInspectorDebuggerAgent.cpp435 void InspectorDebuggerAgent::getStepInPositions(ErrorString* errorString, const String& callFrameId, RefPtr<Array<TypeBuilder::Debugger::Location> >& positions) argument
441 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptForObjectId(callFrameId);
447 injectedScript.getStepInPositions(errorString, m_currentCallStack, callFrameId, positions);
612 void InspectorDebuggerAgent::restartFrame(ErrorString* errorString, const String& callFrameId, RefPtr<Array<CallFrame> >& newCallFrames, RefPtr<JSONObject>& result, RefPtr<StackTrace>& asyncStackTrace) argument
618 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptForObjectId(callFrameId);
624 injectedScript.restartFrame(errorString, m_currentCallStack, callFrameId, &result);
733 ScriptValue InspectorDebuggerAgent::resolveCallFrame(ErrorString* errorString, const String* callFrameId) argument
735 if (!callFrameId)
741 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptForObjectId(*callFrameId);
746 return injectedScript.findCallFrameById(errorString, m_currentCallStack, *callFrameId);
749 stepOver(ErrorString* errorString, const String* callFrameId) argument
770 stepOut(ErrorString* errorString, const String* callFrameId) argument
806 evaluateOnCallFrame(ErrorString* errorString, const String& callFrameId, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, const bool* const doNotPauseOnExceptionsAndMuteConsole, const bool* const returnByValue, const bool* generatePreview, RefPtr<RemoteObject>& result, TypeBuilder::OptOutput<bool>* wasThrown) argument
892 setVariableValue(ErrorString* errorString, int scopeNumber, const String& variableName, const RefPtr<JSONObject>& newValue, const String* callFrameId, const String* functionObjectId) argument
[all...]

Completed in 82 milliseconds