Home | History | Annotate | Download | only in inspector

Lines Matching refs:ErrorString

52 void InspectorRuntimeAgent::evaluate(ErrorString* errorString, const String& expression, const String* const objectGroup, const bool* const includeCommandLineAPI, RefPtr<InspectorObject>* result)
56 injectedScript.evaluate(errorString, expression, objectGroup ? *objectGroup : "", includeCommandLineAPI ? *includeCommandLineAPI : false, result);
59 void InspectorRuntimeAgent::evaluateOn(ErrorString* errorString, const String& objectId, const String& expression, RefPtr<InspectorObject>* result)
63 injectedScript.evaluateOn(errorString, objectId, expression, result);
66 void InspectorRuntimeAgent::getProperties(ErrorString* errorString, const String& objectId, bool ignoreHasOwnProperty, RefPtr<InspectorArray>* result)
70 injectedScript.getProperties(errorString, objectId, ignoreHasOwnProperty, result);
73 void InspectorRuntimeAgent::setPropertyValue(ErrorString* errorString, const String& objectId, const String& propertyName, const String& expression)
77 injectedScript.setPropertyValue(errorString, objectId, propertyName, expression);
79 *errorString = "No injected script found";
82 void InspectorRuntimeAgent::releaseObject(ErrorString*, const String& objectId)
89 void InspectorRuntimeAgent::releaseObjectGroup(ErrorString*, const String& objectGroup)