/external/chromium_org/third_party/WebKit/Source/devtools/front_end/resources/ |
ResourcesPanel.js | [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/ |
CookiesTable.js | 84 * @param {!WebInspector.ContextMenu} contextMenu 87 _onContextMenu: function(contextMenu, node) 94 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Clear all from \"%s\"" : "Clear All from \"%s\"", domain), this._clearAndRefresh.bind(this, domain)); 95 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Clear all" : "Clear All"), this._clearAndRefresh.bind(this, null));
|
ObjectPropertiesSection.js | 56 this.element.addEventListener("contextmenu", this._contextMenuEventFired.bind(this), false); 61 var contextMenu = new WebInspector.ContextMenu(event); 62 contextMenu.appendApplicableItems(this.object); 63 contextMenu.show(); 195 this.nameElement.addEventListener("contextmenu", this._contextMenuFired.bind(this, this.property.symbol), false); 236 this.valueElement.addEventListener("contextmenu", this._contextMenuFired.bind(this, this.property.value), false); 263 var contextMenu = new WebInspector.ContextMenu(event); 264 this.populateContextMenu(contextMenu); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLElement.h | 100 HTMLMenuElement* contextMenu() const;
|
HTMLElement.cpp | 235 attributeNameToEventNameMap.set(oncontextmenuAttr.localName(), EventTypeNames::contextmenu); [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/console/ |
ConsoleView.js | 120 this._messagesElement.addEventListener("contextmenu", this._handleContextMenuEvent.bind(this), false); 596 var contextMenu = new WebInspector.ContextMenu(event); 602 contextMenu.appendCheckboxItem(WebInspector.UIString("Log XMLHttpRequests"), monitoringXHRItemAction, WebInspector.settings.monitoringXHREnabled.get()); 607 var filterSubMenu = contextMenu.appendSubMenuItem(WebInspector.UIString("Filter")); 628 contextMenu.appendSeparator(); 629 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Clear console" : "Clear Console"), this._requestClearMessages.bind(this)); 633 contextMenu.appendSeparator(); 634 contextMenu.appendItem(WebInspector.UIString("Replay XHR"), request.replayXHR.bind(request)); 637 contextMenu.show() [all...] |
ConsoleViewMessage.js | 425 elem.addEventListener("contextmenu", this._contextMenuEventFired.bind(this, obj), false); 451 titleElement.addEventListener("contextmenu", this._contextMenuEventFired.bind(this, obj), false); 471 var contextMenu = new WebInspector.ContextMenu(event); 472 contextMenu.appendApplicableItems(obj); 473 contextMenu.show(); 786 elem.addEventListener("contextmenu", this._contextMenuEventFired.bind(this, array), false); [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/elements/ |
ElementsPanel.js | 60 this._splitView.sidebarElement().addEventListener("contextmenu", this._sidebarContextMenuEventFired.bind(this), false); [all...] |
StylesSidebarPane.js | 61 this.element.addEventListener("contextmenu", this._contextMenuEventFired.bind(this), true); 205 var contextMenu = new WebInspector.ContextMenu(/** @type {!Event} */(event.data)); 208 contextMenu.appendItem(descriptor.text, descriptor.handler); 210 if (!contextMenu.isEmpty()) 211 contextMenu.appendSeparator(); 212 contextMenu.appendItem("inspector-stylesheet", this._createNewRuleInViaInspectorStyleSheet.bind(this)); 213 contextMenu.show(); 293 var contextMenu = new WebInspector.ContextMenu(event) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/source_frame/ |
SourceFrame.js | 671 populateLineGutterContextMenu: function(contextMenu, lineNumber) 675 populateTextAreaContextMenu: function(contextMenu, lineNumber) 995 populateLineGutterContextMenu: function(contextMenu, lineNumber) 997 this._sourceFrame.populateLineGutterContextMenu(contextMenu, lineNumber); 1000 populateTextAreaContextMenu: function(contextMenu, lineNumber) 1002 this._sourceFrame.populateTextAreaContextMenu(contextMenu, lineNumber);
|
CodeMirrorTextEditor.js | 159 this.element.addEventListener("contextmenu", this._contextMenu.bind(this), false); [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/documentation/ |
DocumentationView.js | 326 * @implements {WebInspector.ContextMenu.Provider} 335 * @param {!WebInspector.ContextMenu} contextMenu 338 appendApplicableItems: function(event, contextMenu, target) 345 contextMenu.appendItem(itemName, function() {}, true); 355 contextMenu.appendItem(WebInspector.UIString(formatString, descriptors[0].name(), descriptors[0].searchItem()), WebInspector.DocumentationView.showDocumentationURL.bind(null, descriptors[0].url(), methodName)); 358 var subMenuItem = contextMenu.appendSubMenuItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Show documentation for..." : "Show Documentation for..."));
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/ |
DataGrid.js | 33 * @param {function(!WebInspector.ContextMenu, !WebInspector.DataGridNode)=} contextMenuCallback 58 this._dataTable.addEventListener("contextmenu", this._contextMenuInDataTable.bind(this), true); 70 /** @type {function(!WebInspector.ContextMenu, !WebInspector.DataGridNode)|undefined} */ [all...] |
TabbedPane.js | 966 tabElement.addEventListener("contextmenu", this._tabContextMenu.bind(this), false); 1047 var contextMenu = new WebInspector.ContextMenu(event); 1048 contextMenu.appendItem(WebInspector.UIString("Close"), close.bind(this)); 1049 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Close others" : "Close Others"), closeOthers.bind(this)); 1050 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Close all" : "Close All"), closeAll.bind(this)); 1051 contextMenu.show(); [all...] |
ContextMenu.js | 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()) [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/ |
Layers3DView.js | 52 this._canvasElement.addEventListener("contextmenu", this._onContextMenu.bind(this), false); 656 var contextMenu = new WebInspector.ContextMenu(event); 657 contextMenu.appendItem(WebInspector.UIString("Reset View"), this._transformController.resetAndNotify.bind(this._transformController), false); 659 contextMenu.appendItem(WebInspector.UIString("Jump to Paint Event"), this.dispatchEventToListeners.bind(this, WebInspector.Layers3DView.Events.JumpToPaintEventRequested, activeObject.traceEvent), false); 661 contextMenu.appendApplicableItems(node); 662 contextMenu.show(); [all...] |
PaintProfilerView.js | 256 sidebarTreeElement.addEventListener("contextmenu", this._onContextMenu.bind(this), true); 332 var contextMenu = new WebInspector.ContextMenu(event); 334 contextMenu.appendApplicableItems(domNode); 335 contextMenu.show();
|
TimelinePanel.js | 44 this.element.addEventListener("contextmenu", this._contextMenu.bind(this), false); 508 var contextMenu = new WebInspector.ContextMenu(event); 509 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Save Timeline data\u2026" : "Save Timeline Data\u2026"), this._saveToFile.bind(this), this._operationInProgress); 510 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Load Timeline data\u2026" : "Load Timeline Data\u2026"), this._selectFileToLoad.bind(this), this._operationInProgress); 511 contextMenu.show(); [all...] |
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/toolbox/ |
MediaQueryInspector.js | 15 this.element.addEventListener("contextmenu", this._onContextMenu.bind(this), false); 146 var contextMenu = new WebInspector.ContextMenu(event); 147 var subMenuItem = contextMenu.appendSubMenuItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Reveal in source code" : "Reveal In Source Code")); 152 contextMenu.show();
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/ |
HeapSnapshotDataGrids.js | 122 * @param {!WebInspector.ContextMenu} contextMenu 125 populateContextMenu: function(contextMenu, event) 141 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Reveal in Summary view" : "Reveal in Summary View"), revealInSummaryView.bind(this)); [all...] |
HeapSnapshotView.js | 758 * @param {!WebInspector.ContextMenu} contextMenu 761 populateContextMenu: function(contextMenu, event) 764 this._dataGrid.populateContextMenu(contextMenu, event); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/ |
UiTreeBlock.java | 504 Menu contextMenu = menuManager.createContextMenu(tree); 505 tree.setMenu(contextMenu); [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
ConversationViewFragment.java | 324 final WebViewContextMenu contextMenu = new WebViewContextMenu(getActivity(), 327 contextMenu.setCallbacks(this); 328 mWebView.setOnCreateContextMenuListener(contextMenu); [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ |
user_commands.js | 478 case 'contextMenu':
|
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/ |
command_store.js | 346 'contextMenu': {announce: false,
|