HomeSort by relevance Sort by last modified time
    Searched refs:contextMenu (Results 26 - 50 of 56) sorted by null

12 3

  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
ResourcesPanel.js     [all...]
SourceFrame.js 712 populateLineGutterContextMenu: function(contextMenu, lineNumber)
716 populateTextAreaContextMenu: function(contextMenu, lineNumber)
837 populateLineGutterContextMenu: function(contextMenu, lineNumber)
839 this._sourceFrame.populateLineGutterContextMenu(contextMenu, lineNumber);
842 populateTextAreaContextMenu: function(contextMenu, lineNumber)
844 this._sourceFrame.populateTextAreaContextMenu(contextMenu, lineNumber);
CookiesTable.js 85 * @param {!WebInspector.ContextMenu} contextMenu
88 _onContextMenu: function(contextMenu, node)
95 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Clear all from \"%s\"" : "Clear All from \"%s\"", domain), this._clearAndRefresh.bind(this, domain));
96 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Clear all" : "Clear All"), this._clearAndRefresh.bind(this, null));
ConsoleView.js 98 this.messagesElement.addEventListener("contextmenu", this._handleContextMenuEvent.bind(this), false);
410 var contextMenu = new WebInspector.ContextMenu(event);
416 contextMenu.appendCheckboxItem(WebInspector.UIString("Log XMLHttpRequests"), monitoringXHRItemAction.bind(this), WebInspector.settings.monitoringXHREnabled.get());
422 contextMenu.appendCheckboxItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Preserve log upon navigation" : "Preserve Log upon Navigation"), preserveLogItemAction.bind(this), WebInspector.settings.preserveConsoleLog.get());
426 var filterSubMenu = contextMenu.appendSubMenuItem(WebInspector.UIString("Filter"));
447 contextMenu.appendSeparator();
448 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Clear console" : "Clear Console"), this._requestClearMessages.bind(this));
452 contextMenu.appendSeparator();
453 contextMenu.appendItem(WebInspector.UIString("Replay XHR"), NetworkAgent.replayXHR.bind(null, request.requestI (…)
    [all...]
ElementsPanelDescriptor.js 32 * @implements {WebInspector.ContextMenu.Provider}
38 WebInspector.ContextMenu.registerProvider(this);
43 * @param {!WebInspector.ContextMenu} contextMenu
46 appendApplicableItems: function(event, contextMenu, target)
54 this.panel().appendApplicableItems(event, contextMenu, target);
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();
226 this.valueElement.addEventListener("contextmenu", this._contextMenuFired.bind(this, this.property.value), false);
256 var contextMenu = new WebInspector.ContextMenu(event);
257 this.populateContextMenu(contextMenu);
258 contextMenu.appendApplicableItems(value)
    [all...]
SourcesPanelDescriptor.js 32 * @implements {WebInspector.ContextMenu.Provider}
37 WebInspector.ContextMenu.registerProvider(this);
42 * @param {!WebInspector.ContextMenu} contextMenu
45 appendApplicableItems: function(event, contextMenu, target)
55 this.panel().appendApplicableItems(event, contextMenu, target);
Layers3DView.js 50 this.element.addEventListener("contextmenu", this._onContextMenu.bind(this), false);
412 var contextMenu = new WebInspector.ContextMenu(event);
413 contextMenu.appendApplicableItems(domNode);
414 contextMenu.show();
SourcesPanel.js 48 * @implements {WebInspector.ContextMenu.Provider}
    [all...]
HeapSnapshotDataGrids.js 101 * @param {!WebInspector.ContextMenu} contextMenu
104 populateContextMenu: function(profilesPanel, contextMenu, event)
119 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Reveal in Summary view" : "Reveal in Summary View"), revealInSummaryView.bind(this));
120 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Reveal in Dominators view" : "Reveal in Dominators View"), revealInDominatorsView.bind(this));
123 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Reveal in Dominators view" : "Reveal in Dominators View"), revealInDominatorsView.bind(this));
125 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Reveal in Summary view" : "Reveal in Summary View"), revealInSummaryView.bind(this));
    [all...]
TabbedPane.js 855 tabElement.addEventListener("contextmenu", this._tabContextMenu.bind(this), false);
936 var contextMenu = new WebInspector.ContextMenu(event);
937 contextMenu.appendItem(WebInspector.UIString("Close"), close.bind(this));
938 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Close others" : "Close Others"), closeOthers.bind(this));
939 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Close all" : "Close All"), closeAll.bind(this));
940 contextMenu.show();
ContextMenu.js 183 WebInspector.ContextMenu = function(event) {
193 WebInspector.ContextMenu.setUseSoftMenu = function(useSoftMenu)
195 WebInspector.ContextMenu._useSoftMenu = useSoftMenu;
198 WebInspector.ContextMenu.prototype = {
210 if (WebInspector.ContextMenu._useSoftMenu) {
245 for (var i = 0; i < WebInspector.ContextMenu._providers.length; ++i) {
246 var provider = WebInspector.ContextMenu._providers[i];
259 WebInspector.ContextMenu.Provider = function() {
262 WebInspector.ContextMenu.Provider.prototype = {
264 * @param {!WebInspector.ContextMenu} contextMen
    [all...]
DataGrid.js 33 * @param {function(!WebInspector.ContextMenu, !WebInspector.DataGridNode)=} contextMenuCallback
54 this._dataTable.addEventListener("contextmenu", this._contextMenuInDataTable.bind(this), true);
    [all...]
CodeMirrorTextEditor.js 157 this.element.addEventListener("contextmenu", this._contextMenu.bind(this), false);
701 var contextMenu = new WebInspector.ContextMenu(event);
704 this._delegate.populateLineGutterContextMenu(contextMenu, parseInt(target.textContent, 10) - 1);
706 this._delegate.populateTextAreaContextMenu(contextMenu, 0);
707 contextMenu.show();
    [all...]
TimelinePanel.js 54 this.element.addEventListener("contextmenu", this._contextMenu.bind(this), false);
356 var contextMenu = new WebInspector.ContextMenu(event);
357 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Save Timeline data\u2026" : "Save Timeline Data\u2026"), this._saveToFile.bind(this), this._operationInProgress);
358 contextMenu.appendItem(WebInspector.UIString(WebInspector.useLowerCaseMenuTitles() ? "Load Timeline data\u2026" : "Load Timeline Data\u2026"), this._selectFileToLoad.bind(this), this._operationInProgress);
359 contextMenu.show();
    [all...]
StylesSidebarPane.js 88 this.element.addEventListener("contextmenu", this._contextMenuEventFired.bind(this), true);
211 var contextMenu = new WebInspector.ContextMenu(event);
212 contextMenu.appendApplicableItems(/** @type {!Node} */ (event.target));
213 contextMenu.show();
    [all...]
HeapSnapshotView.js 455 * @param {!WebInspector.ContextMenu} contextMenu
458 populateContextMenu: function(contextMenu, event)
460 this.dataGrid.populateContextMenu(this.parent, contextMenu, event);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
EventSender.cpp 858 static vector<WebString> makeMenuItemStringsFor(WebContextMenuData* contextMenu, WebTestDelegate* delegate)
865 if (!contextMenu)
870 if (contextMenu->isEditable) {
874 MockSpellCheck::fillSuggestionList(contextMenu->misspelledWord, &suggestions);
    [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...]
  /external/chromium_org/chrome/browser/resources/bookmark_manager/js/
main.js     [all...]
  /external/chromium_org/chrome/browser/resources/enhanced_bookmark_manager/js/
main.js     [all...]
  /external/chromium/chrome/browser/resources/ntp/
apps.js 240 el.addEventListener('contextmenu', cr.ui.contextMenuHandler);
244 Object.defineProperty(el, 'contextMenu', {
  /external/chromium_org/chrome/browser/resources/task_manager/
main.js 201 if (label && !label.contextMenu)
317 this.table_.list.addEventListener('contextmenu',
  /external/chromium/chrome/browser/resources/bookmark_manager/js/
main.js 901 list.contextMenu = $('context-menu');
902 tree.contextMenu = $('context-menu');
    [all...]
  /external/chromium/chrome/browser/resources/file_manager/js/
file_manager.js 642 this.grid_.contextMenu = this.fileContextMenu_;
684 this.table_.contextMenu = this.fileContextMenu_;
    [all...]

Completed in 382 milliseconds

12 3