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

  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScript.h 48 class InjectedScript : public InjectedScriptBase {
50 InjectedScript();
51 ~InjectedScript() { }
100 friend InjectedScript InjectedScriptManager::injectedScriptFor(ScriptState*);
101 InjectedScript(ScriptObject, InspectedStateAccessCheck);
InjectedScriptSource.js 82 var InjectedScript = function()
100 InjectedScript.primitiveTypes = {
107 InjectedScript.prototype = {
115 return InjectedScript.primitiveTypes[typeof object] && !this._isHTMLAllCollection(object);
188 switch (injectedScript._describe(object)) {
217 return new InjectedScript.RemoteObject(object, objectGroupName, forceValueType, generatePreview, columnNames);
220 var description = injectedScript._describe(e);
224 return new InjectedScript.RemoteObject(description);
282 inspectedWindow.console.error("Web Inspector error: InjectedScript.%s returns undefined", methodName);
364 scopes.push(InjectedScript.CallFrameProxy._createScopeJson(rawScopes[i].type, rawScopes[i].object, objectGroupName))
    [all...]
InjectedScript.cpp 34 #include "core/inspector/InjectedScript.h"
50 InjectedScript::InjectedScript()
51 : InjectedScriptBase("InjectedScript")
55 InjectedScript::InjectedScript(ScriptObject injectedScriptObject, InspectedStateAccessCheck accessCheck)
56 : InjectedScriptBase("InjectedScript", injectedScriptObject, accessCheck)
60 void InjectedScript::evaluate(ErrorString* errorString, const String& expression, const String& objectGroup, bool includeCommandLineAPI, bool returnByValue, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown)
71 void InjectedScript::callFunctionOn(ErrorString* errorString, const String& objectId, const String& expression, const String& arguments, bool returnByValue, bool generatePreview, RefPtr<TypeBuilder::Runtime::RemoteObject>* result, TypeBuilder::OptOutput<bool>* wasThrown)
82 void InjectedScript::evaluateOnCallFrame(ErrorString* errorString, const ScriptValue& callFrames, const String& callFr (…)
    [all...]

Completed in 2928 milliseconds