OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:remoteObject
(Results
1 - 12
of
12
) sorted by null
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/
ExtensionAuditCategory.js
151
* @param {function(!WebInspector.
RemoteObject
)} callback
157
* @param {!RuntimeAgent.
RemoteObject
} result
183
function onEvaluate(
remoteObject
)
185
var section = new WebInspector.ObjectPropertiesSection(
remoteObject
, title);
217
* @param {!WebInspector.
RemoteObject
}
remoteObject
219
function onEvaluate(
remoteObject
)
221
remoteObject
.pushNodeToFrontend(onNodeAvailable);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/
ElementsPanel.js
[
all
...]
EventListenersSidebarPane.js
224
* @param {?WebInspector.
RemoteObject
} nodeObject
238
var
remoteObject
= this._runtimeModel.createRemoteObject(payload.handler);
239
properties.push(new WebInspector.RemoteObjectProperty("handler",
remoteObject
));
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InjectedScriptHost.cpp
76
RefPtr<TypeBuilder::Runtime::
RemoteObject
>
remoteObject
= TypeBuilder::Runtime::
RemoteObject
::runtimeCast(object);
77
inspectorAgent->inspect(
remoteObject
, hints->asObject());
InjectedScriptCanvasModule.cpp
44
using blink::TypeBuilder::Runtime::
RemoteObject
;
193
void InjectedScriptCanvasModule::evaluateTraceLogCallArgument(ErrorString* errorString, const TraceLogId& traceLogId, int callIndex, int argumentIndex, const String& objectGroup, RefPtr<
RemoteObject
>* result, RefPtr<ResourceState>* resourceState)
208
RefPtr<JSONObject>
remoteObject
= resultObject->getObject("result");
209
if (
remoteObject
)
210
*result =
RemoteObject
::runtimeCast(
remoteObject
);
214
if (!
remoteObject
&& !resourceStateObject)
InjectedScriptSource.js
234
* @return {!RuntimeAgent.
RemoteObject
}
245
* @return {!RuntimeAgent.
RemoteObject
}
255
return /** @type {!RuntimeAgent.
RemoteObject
} */ (result);
262
* @return {!RuntimeAgent.
RemoteObject
}
311
* @return {!RuntimeAgent.
RemoteObject
}
317
return new InjectedScript.
RemoteObject
(object, objectGroupName, forceValueType, generatePreview, columnNames, isTable);
324
return new InjectedScript.
RemoteObject
(description);
713
var
remoteObject
= this._wrapObject(value, objectGroup, false, generatePreview && !(value instanceof Error));
714
if (!
remoteObject
.description){
716
remoteObject
.description = toStringDescription(value)
[
all
...]
InjectedScriptCanvasModuleSource.js
[
all
...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
ObjectPropertiesSection.js
30
* @param {!WebInspector.
RemoteObject
} object
91
WebInspector.
RemoteObject
.loadFromObject(this.object, !!this.ignoreHasOwnProperty, callback.bind(this));
158
var propertyValue = /** @type {!WebInspector.
RemoteObject
} */ (this.property.value);
406
var property = WebInspector.
RemoteObject
.toCallArgument(this.property.symbol || this.property.name);
460
* @param {?WebInspector.
RemoteObject
} result
479
* @param {!WebInspector.
RemoteObject
} value
506
WebInspector.
RemoteObject
.loadFromObjectPerProto(value, callback);
516
* @param {?WebInspector.
RemoteObject
} value
592
* @param {?WebInspector.
RemoteObject
} object
594
* @param {function(?WebInspector.
RemoteObject
, boolean=)} callbac
[
all
...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
SourcesPanel.js
[
all
...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
RemoteObject.js
32
* This may not be an interface due to "instanceof WebInspector.
RemoteObject
" checks in the code.
36
WebInspector.
RemoteObject
= function() { }
38
WebInspector.
RemoteObject
.prototype = {
100
* @param {function(?WebInspector.
RemoteObject
, boolean=)=} callback
152
* @return {!WebInspector.
RemoteObject
}
154
WebInspector.
RemoteObject
.fromLocalObject = function(value)
160
* @param {!WebInspector.
RemoteObject
}
remoteObject
163
WebInspector.
RemoteObject
.type = function(
remoteObject
)
[
all
...]
DebuggerModel.js
598
* @param {function(?WebInspector.
RemoteObject
, boolean, ?RuntimeAgent.
RemoteObject
=, ?DebuggerAgent.ExceptionDetails=)} callback
603
* @param {?RuntimeAgent.
RemoteObject
} result
674
* @param {!WebInspector.
RemoteObject
}
remoteObject
677
functionDetails: function(
remoteObject
, callback)
679
this._agent.getFunctionDetails(
remoteObject
.objectId, didGetDetails.bind(this));
951
* @return {?WebInspector.
RemoteObject
}
959
* @return {?WebInspector.
RemoteObject
}
[
all
...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
CanvasProfileView.js
547
* @param {!RuntimeAgent.
RemoteObject
=} result
589
* @param {!WebInspector.
RemoteObject
} object
[
all
...]
Completed in 321 milliseconds