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() { }
101 friend InjectedScript InjectedScriptManager::injectedScriptFor(ScriptState*);
102 InjectedScript(ScriptObject, InspectedStateAccessCheck);
InjectedScriptSource.js 103 var InjectedScript = function()
121 InjectedScript.primitiveTypes = {
128 InjectedScript.prototype = {
136 return InjectedScript.primitiveTypes[typeof object] && !this._isHTMLAllCollection(object);
209 switch (injectedScript._describe(object)) {
239 return new InjectedScript.RemoteObject(object, objectGroupName, forceValueType, generatePreview, columnNames, isTable);
242 var description = injectedScript._describe(e);
246 return new InjectedScript.RemoteObject(description);
304 inspectedWindow.console.error("Web Inspector error: InjectedScript.%s returns undefined", methodName);
386 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 38 milliseconds