Searched defs:InjectedScript (Results 1 - 3 of 3) sorted by path

/external/webkit/Source/WebCore/inspector/
H A DInjectedScript.cpp32 #include "InjectedScript.h"
46 InjectedScript::InjectedScript() function in class:WebCore::InjectedScript
51 InjectedScript::InjectedScript(ScriptObject injectedScriptObject, InspectedStateAccessCheck accessCheck) function in class:WebCore::InjectedScript
57 void InjectedScript::evaluate(ErrorString* errorString, const String& expression, const String& objectGroup, bool includeCommandLineAPI, RefPtr<InspectorObject>* result)
66 void InjectedScript::evaluateOn(ErrorString* errorString, const String& objectId, const String& expression, RefPtr<InspectorObject>* result)
74 void InjectedScript::evaluateOnCallFrame(ErrorString* errorString, const String& callFrameId, const String& expression, const String& objectGroup, bool includeCommandLineAPI, RefPtr<InspectorObject>* result)
84 void InjectedScript::getProperties(ErrorString* errorString, const String& objectId, bool ignoreHasOwnProperty, RefPtr<InspectorArray>* properties)
99 Node* InjectedScript
[all...]
H A DInjectedScript.h51 class InjectedScript { class in namespace:WebCore
53 InjectedScript();
54 ~InjectedScript() { }
77 friend InjectedScript InjectedScriptManager::injectedScriptFor(ScriptState*);
79 InjectedScript(ScriptObject, InspectedStateAccessCheck);
H A DInjectedScriptSource.js45 var InjectedScript = function() class
53 InjectedScript.prototype = {
110 return InjectedScript.RemoteObject.fromObject(object, objectId);
112 return InjectedScript.RemoteObject.fromObject("[ Exception: " + e.toString() + " ]");
136 inspectedWindow.console.error("Web Inspector error: InjectedScript.%s returns undefined", methodName);
167 property.value = new InjectedScript.RemoteObject.fromException(e);
171 property.value = new InjectedScript.RemoteObject.fromObject("\u2014"); // em dash
267 return InjectedScript.RemoteObject.fromException(e);
305 result.push(new InjectedScript.CallFrameProxy(depth++, callFrame));
442 var injectedScript = new InjectedScript();
[all...]

Completed in 76 milliseconds