Home | History | Annotate | Download | only in ui

Lines Matching defs:ContextMenu

33  * @param {!WebInspector.ContextMenu} topLevelMenu
103 * @param {!WebInspector.ContextMenu} topLevelMenu
201 WebInspector.ContextMenu = function(event)
209 WebInspector.ContextMenu.initialize = function()
217 WebInspector.ContextMenu._useSoftMenu = /** @type {boolean} */ (event.data);
221 WebInspector.ContextMenu.prototype = {
236 if (WebInspector.ContextMenu._useSoftMenu || InspectorFrontendHost.isHostedMode()) {
298 self.runtime.extensions(WebInspector.ContextMenu.Provider, target).forEach(processProviders.bind(this));
302 * @this {WebInspector.ContextMenu}
306 var provider = /** @type {!WebInspector.ContextMenu.Provider} */ (extension.instance());
319 WebInspector.ContextMenu.Provider = function() {
322 WebInspector.ContextMenu.Provider.prototype = {
325 * @param {!WebInspector.ContextMenu} contextMenu
328 appendApplicableItems: function(event, contextMenu, target) { }