/external/chromium_org/third_party/WebKit/Source/core/page/ |
D | ContextMenuController.cpp | 115 showContextMenu(event); in handleContextMenuEvent() 118 void ContextMenuController::showContextMenu(Event* event, PassRefPtr<ContextMenuProvider> menuProvi… in showContextMenu() function in blink::ContextMenuController 129 showContextMenu(event); in showContextMenu() 144 showContextMenu(nullptr); in showContextMenuAtPoint() 173 void ContextMenuController::showContextMenu(Event* event) in showContextMenu() function in blink::ContextMenuController 175 m_client->showContextMenu(m_contextMenu.get()); in showContextMenu()
|
D | ContextMenuController.h | 59 void showContextMenu(Event*, PassRefPtr<ContextMenuProvider>); 72 void showContextMenu(Event*);
|
D | ContextMenuClient.h | 36 virtual void showContextMenu(const ContextMenu*) = 0;
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InspectorFrontendHost.cpp | 212 void InspectorFrontendHost::showContextMenu(Page* page, float x, float y, const Vector<ContextMenuI… in showContextMenu() function in blink::InspectorFrontendHost 222 page->inspectorController().showContextMenu(x * zoom, y * zoom, menuProvider); in showContextMenu() 225 void InspectorFrontendHost::showContextMenu(Event* event, const Vector<ContextMenuItem>& items) in showContextMenu() function in blink::InspectorFrontendHost 243 targetPage->contextMenuController().showContextMenu(event, menuProvider); in showContextMenu()
|
D | InspectorFrontendHost.h | 65 void showContextMenu(Event*, const Vector<ContextMenuItem>& items); 66 void showContextMenu(Page*, float x, float y, const Vector<ContextMenuItem>& items);
|
D | InspectorFrontendHost.idl | 47 // FIXME: showContextMenu is here only for old frontends. Remove in M43. 48 [Custom] void showContextMenu(MouseEvent event, any items);
|
D | InspectorClient.h | 75 virtual void showContextMenu(float x, float y, PassRefPtr<ContextMenuProvider>) { } in showContextMenu() function
|
D | InspectorController.h | 94 void showContextMenu(float x, float y, PassRefPtr<ContextMenuProvider>);
|
D | InspectorController.cpp | 364 void InspectorController::showContextMenu(float x, float y, PassRefPtr<ContextMenuProvider> menuPro… in showContextMenu() function in blink::InspectorController 368 m_inspectorClient->showContextMenu(x, y, menuProvider); in showContextMenu()
|
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/contextmenu/ |
D | ContextMenuHelper.java | 58 private void showContextMenu(ContentViewCore contentViewCore, ContextMenuParams params) { in showContextMenu() method in ContextMenuHelper 73 view.showContextMenu(); in showContextMenu()
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
D | chrome_web_view_experimental.js | 113 ChromeWebView.showContextMenu(this.guestInstanceId, requestId, items); 125 ChromeWebView.showContextMenu(this.guestInstanceId, requestId, undefined);
|
D | chrome_web_view.js | 69 ChromeWebView.showContextMenu(this.guestInstanceId, requestId, params);
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | ContextMenuClientImpl.h | 45 virtual void showContextMenu(const ContextMenu*) OVERRIDE;
|
D | InspectorClientImpl.h | 73 virtual void showContextMenu(float x, float y, PassRefPtr<ContextMenuProvider>) OVERRIDE;
|
D | InspectorClientImpl.cpp | 158 void InspectorClientImpl::showContextMenu(float x, float y, PassRefPtr<ContextMenuProvider> menuPro… in showContextMenu() function in blink::InspectorClientImpl
|
D | ContextMenuClientImpl.cpp | 181 void ContextMenuClientImpl::showContextMenu(const ContextMenu* defaultMenu) in showContextMenu() function in blink::ContextMenuClientImpl 390 selectedWebFrame->client()->showContextMenu(data); in showContextMenu()
|
D | WebViewImpl.h | 259 virtual void showContextMenu() OVERRIDE;
|
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/ |
D | V8InspectorFrontendHostCustom.cpp | 126 frontendHost->showContextMenu(event, items); in showContextMenuMethodCustom() 159 …frontendHost->showContextMenu(window->document()->page(), static_cast<float>(x->NumberValue()), st… in showContextMenuAtPointMethodCustom()
|
/external/chromium_org/chrome/browser/ui/cocoa/download/ |
D | download_item_controller.h | 163 - (IBAction)showContextMenu:(id)sender;
|
D | download_item_controller.mm | 373 - (IBAction)showContextMenu:(id)sender {
|
/external/chromium_org/content/shell/renderer/test_runner/ |
D | web_frame_test_proxy.h | 176 virtual void showContextMenu( in showContextMenu() function 180 Base::showContextMenu(context_menu_data); in showContextMenu()
|
/external/chromium_org/third_party/WebKit/public/web/ |
D | WebView.h | 397 virtual void showContextMenu() = 0;
|
D | WebFrameClient.h | 376 virtual void showContextMenu(const WebContextMenuData&) { } in showContextMenu() function
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
D | PinchViewportTest.cpp | 819 MOCK_METHOD1(showContextMenu, void(const WebContextMenuData&)); 857 …EXPECT_CALL(mockWebFrameClient, showContextMenu(ContextMenuAtLocation(mouseDownEvent.x, mouseDownE… in TEST_F() 874 …EXPECT_CALL(mockWebFrameClient, showContextMenu(ContextMenuAtLocation(mouseDownEvent.x, mouseDownE… in TEST_F()
|
/external/chromium_org/third_party/WebKit/Source/core/loader/ |
D | EmptyClients.h | 303 virtual void showContextMenu(const ContextMenu*) OVERRIDE { } in showContextMenu() function
|