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

  /external/webkit/WebCore/inspector/
InjectedScript.h 44 class InjectedScript {
46 InjectedScript() { }
47 ~InjectedScript() { }
59 friend InjectedScript InjectedScriptHost::injectedScriptFor(ScriptState*);
60 explicit InjectedScript(ScriptObject);
InjectedScript.cpp 32 #include "InjectedScript.h"
42 InjectedScript::InjectedScript(ScriptObject injectedScriptObject)
47 void InjectedScript::dispatch(long callId, const String& methodName, const String& arguments, bool async, RefPtr<SerializedScriptValue>* result, bool* hadException)
62 PassRefPtr<SerializedScriptValue> InjectedScript::callFrames()
71 PassRefPtr<SerializedScriptValue> InjectedScript::wrapForConsole(ScriptValue value)
81 void InjectedScript::releaseWrapperObjectGroup(const String& objectGroup)
InjectedScriptHost.h 44 class InjectedScript;
88 InjectedScript injectedScriptFor(ScriptState*);
89 InjectedScript injectedScriptForId(long);
101 typedef HashMap<long, InjectedScript> IdToInjectedScriptMap;
InjectedScriptHost.cpp 41 #include "InjectedScript.h"
169 InjectedScript InjectedScriptHost::injectedScriptForId(long id)
182 InjectedScript injectedScript = m_idToInjectedScript.get(injectedScriptId);
183 if (!injectedScript.hasNoValue())
184 injectedScript.releaseWrapperObjectGroup(objectGroup);
InspectorController.h 67 class InjectedScript;
254 InjectedScript injectedScriptForNodeId(long id);
InspectorBackend.cpp 43 #include "InjectedScript.h"
291 InjectedScript injectedScript;
293 injectedScript = m_inspectorController->injectedScriptForNodeId(-injectedScriptId);
295 injectedScript = m_inspectorController->injectedScriptHost()->injectedScriptForId(injectedScriptId);
297 if (injectedScript.hasNoValue())
302 injectedScript.dispatch(callId, methodName, arguments, async, &result, &hadException);
304 return; // InjectedScript will return result asynchronously by means of ::reportDidDispatchOnInjectedScript.
InspectorController.cpp 56 #include "InjectedScript.h"
    [all...]
InspectorFrontend.cpp 37 #include "InjectedScript.h"
108 InjectedScript injectedScript = m_inspectorController->injectedScriptHost()->injectedScriptFor(scriptState);
110 RefPtr<SerializedScriptValue> serializedValue = injectedScript.wrapForConsole(arguments[i]);
  /external/webkit/WebCore/inspector/front-end/
InjectedScript.js 31 var InjectedScript = {};
33 InjectedScript.lastBoundObjectId = 1;
34 InjectedScript.idToWrappedObject = {};
35 InjectedScript.objectGroups = {};
36 InjectedScript.wrapObject = function(object, objectGroupName)
41 var id = InjectedScript.lastBoundObjectId++;
43 InjectedScript.idToWrappedObject[objectId] = object;
45 var group = InjectedScript.objectGroups[objectGroupName];
48 InjectedScript.objectGroups[objectGroupName] = group;
52 return InjectedScript.createProxyObject(object, objectId)
    [all...]
  /external/webkit/WebCore/bindings/js/
JSInjectedScriptHostCustom.cpp 46 #include "InjectedScript.h"
218 InjectedScript InjectedScriptHost::injectedScriptFor(ScriptState* scriptState)
222 JSObject* injectedScript = globalObject->injectedScript();
223 if (injectedScript)
224 return InjectedScript(ScriptObject(scriptState, injectedScript));
229 InjectedScript result(injectedScriptObject);
  /external/webkit/WebCore/bindings/v8/custom/
V8InjectedScriptHostCustom.cpp 37 #include "InjectedScript.h"
103 // to create and configure InjectedScript instance that is going to be used by the inspector.
115 v8::Local<v8::Object> injectedScript(v8::Object::Cast(*injectedScriptValue));
116 return ScriptObject(inspectedScriptState, injectedScript);
212 InjectedScript InjectedScriptHost::injectedScriptFor(ScriptState* inspectedScriptState)
226 return InjectedScript(ScriptObject(inspectedScriptState, v8::Local<v8::Object>::Cast(val)));
230 InjectedScript result(injectedScriptObject);

Completed in 274 milliseconds