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

  /external/webkit/Source/WebCore/inspector/
InjectedScriptManager.h 41 class InjectedScript;
58 InjectedScript injectedScriptFor(ScriptState*);
59 InjectedScript injectedScriptForId(long);
60 InjectedScript injectedScriptForObjectId(const String& objectId);
77 typedef HashMap<long, InjectedScript> IdToInjectedScriptMap;
InjectedScript.cpp 32 #include "InjectedScript.h"
46 InjectedScript::InjectedScript()
51 InjectedScript::InjectedScript(ScriptObject injectedScriptObject, InspectedStateAccessCheck accessCheck)
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::nodeForObjectId(const String& objectId
    [all...]
InjectedScript.h 51 class InjectedScript {
53 InjectedScript();
54 ~InjectedScript() { }
77 friend InjectedScript InjectedScriptManager::injectedScriptFor(ScriptState*);
79 InjectedScript(ScriptObject, InspectedStateAccessCheck);
InspectorRuntimeAgent.cpp 36 #include "InjectedScript.h"
54 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptFor(getDefaultInspectedState());
55 if (!injectedScript.hasNoValue())
56 injectedScript.evaluate(errorString, expression, objectGroup ? *objectGroup : "", includeCommandLineAPI ? *includeCommandLineAPI : false, result);
61 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptForObjectId(objectId);
62 if (!injectedScript.hasNoValue())
63 injectedScript.evaluateOn(errorString, objectId, expression, result);
68 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptForObjectId(objectId)
    [all...]
InjectedScriptManager.cpp 36 #include "InjectedScript.h"
79 InjectedScript InjectedScriptManager::injectedScriptForId(long id)
84 InjectedScript InjectedScriptManager::injectedScriptForObjectId(const String& objectId)
93 return InjectedScript();
InjectedScriptSource.js 45 var InjectedScript = function()
53 InjectedScript.prototype = {
77 switch (injectedScript._describe(object)) {
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))
    [all...]
InjectedScriptHost.h 45 class InjectedScript;
ConsoleMessage.cpp 37 #include "InjectedScript.h"
144 InjectedScript injectedScript = injectedScriptManager->injectedScriptFor(m_arguments->globalState());
145 if (!injectedScript.hasNoValue()) {
148 RefPtr<InspectorValue> inspectorValue = injectedScript.wrapObject(m_arguments->argumentAt(i), "console");
InspectorAgent.h 50 class InjectedScript;
InspectorDebuggerAgent.cpp 34 #include "InjectedScript.h"
356 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptForObjectId(callFrameId);
357 if (!injectedScript.hasNoValue())
358 injectedScript.evaluateOnCallFrame(errorString, callFrameId, expression, objectGroup ? *objectGroup : "", includeCommandLineAPI ? *includeCommandLineAPI : false, result);
365 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptFor(m_pausedScriptState);
366 if (injectedScript.hasNoValue()) {
370 return injectedScript.callFrames();
InspectorDOMAgent.cpp 916 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptFor(mainWorldScriptState(frame));
917 if (injectedScript.hasNoValue())
920 injectedScript.inspectNode(node.get());
991 InjectedScript injectedScript = m_injectedScriptManager->injectedScriptForObjectId(objectId);
992 Node* node = injectedScript.nodeForObjectId(objectId);
    [all...]
  /external/webkit/Source/WebCore/bindings/js/
JSInjectedScriptManager.cpp 39 #include "InjectedScript.h"
82 InjectedScript InjectedScriptManager::injectedScriptFor(ScriptState* scriptState)
86 JSObject* injectedScript = globalObject->injectedScript();
87 if (injectedScript)
88 return InjectedScript(ScriptObject(scriptState, injectedScript), m_inspectedStateAccessCheck);
91 return InjectedScript();
95 InjectedScript result(injectedScriptObject.second, m_inspectedStateAccessCheck);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8InjectedScriptManager.cpp 35 #include "InjectedScript.h"
97 // to create and configure InjectedScript instance that is going to be used by the inspector.
109 v8::Local<v8::Object> injectedScript(v8::Object::Cast(*injectedScriptValue));
110 return ScriptObject(inspectedScriptState, injectedScript);
128 InjectedScript InjectedScriptManager::injectedScriptFor(ScriptState* inspectedScriptState)
142 return InjectedScript(ScriptObject(inspectedScriptState, v8::Local<v8::Object>::Cast(val)), m_inspectedStateAccessCheck);
145 return InjectedScript();
147 pair<long, ScriptObject> injectedScript = injectScript(injectedScriptSource(), inspectedScriptState);
148 InjectedScript result(injectedScript.second, m_inspectedStateAccessCheck)
    [all...]

Completed in 421 milliseconds