OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:extensionServer
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/extensions/
ExtensionView.js
57
WebInspector.
extensionServer
.notifyViewShown(this._id, this._frameIndex);
63
WebInspector.
extensionServer
.notifyViewHidden(this._id);
71
WebInspector.
extensionServer
.notifyViewShown(this._id, this._frameIndex);
92
WebInspector.
extensionServer
.notifyViewShown(this._id);
97
WebInspector.
extensionServer
.notifyViewHidden(this._id);
ExtensionAPI.js
143
extensionServer
.sendRequest({ command: commands.Subscribe, type: this._type });
145
extensionServer
.registerHandler("notify-" + this._type, this._dispatch.bind(this));
159
extensionServer
.sendRequest({ command: commands.Unsubscribe, type: this._type });
205
extensionServer
.sendRequest({ command: commands.GetConsoleMessages }, callback);
210
extensionServer
.sendRequest({ command: commands.AddConsoleMessage, severity: severity, text: text, url: url, line: line });
250
extensionServer
.sendRequest({ command: commands.GetHAR }, callback && callbackWrapper);
255
extensionServer
.sendRequest({ command: commands.AddRequestHeaders, headers: headers, extensionId: window.location.hostname });
274
extensionServer
.sendRequest({ command: commands.GetRequestContent, id: this._id }, callback && callbackWrapper);
294
this.applyStyleSheet = function(styleSheet) {
extensionServer
.sendRequest({ command: commands.ApplyStyleSheet, styleSheet: styleSheet }); };
300
var id = "extension-panel-" +
extensionServer
.nextObjectId()
[
all
...]
ExtensionPanel.js
73
WebInspector.
extensionServer
.notifySearchAction(this.name, WebInspector.extensionAPI.panels.SearchAction.CancelSearch);
92
WebInspector.
extensionServer
.notifySearchAction(this.name, WebInspector.extensionAPI.panels.SearchAction.PerformSearch, query);
97
WebInspector.
extensionServer
.notifySearchAction(this.name, WebInspector.extensionAPI.panels.SearchAction.NextSearchResult);
102
WebInspector.
extensionServer
.notifySearchAction(this.name, WebInspector.extensionAPI.panels.SearchAction.PreviousSearchResult);
142
WebInspector.
extensionServer
.notifyButtonClicked(this._id);
181
WebInspector.
extensionServer
.evaluate(expression, true, false, evaluateOptions, securityOrigin, this._onEvaluate.bind(this, title, callback));
ExtensionAuditCategory.js
75
WebInspector.
extensionServer
.startAuditRun(this, results);
104
WebInspector.
extensionServer
.stopAuditRun(this);
168
WebInspector.
extensionServer
.evaluate(expression, false, false, evaluateOptions, this._category._extensionOrigin, onEvaluate.bind(this));
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
ExtensionServerProxy.js
28
if (!WebInspector.
extensionServer
)
29
WebInspector.
extensionServer
= self.runtime.instance(WebInspector.ExtensionServerAPI);
54
WebInspector.
extensionServer
.addExtensions(this._pendingExtensions);
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/tests/
this.js
35
extensionServer
.sendRequest({ command: commands.Subscribe, type: this._type });
37
extensionServer
.registerHandler("notify-" + this._type, this._dispatch.bind(this));
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
externs.js
218
var
extensionServer
;
Completed in 2512 milliseconds