Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(364)

Unified Diff: Source/web/InspectorClientImpl.cpp

Issue 900543003: DevTools: do not abuse inspector controller for the front-end side plumbing. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/web/InspectorClientImpl.cpp
diff --git a/Source/web/InspectorClientImpl.cpp b/Source/web/InspectorClientImpl.cpp
index 2af57abf472ad95697dd8af4e54fba8cb016f36a..64c055a4db2b6d7943b3aa0f4cfe8b2ae04a973f 100644
--- a/Source/web/InspectorClientImpl.cpp
+++ b/Source/web/InspectorClientImpl.cpp
@@ -161,11 +161,6 @@ void InspectorClientImpl::setPageScaleFactor(float pageScaleFactor)
m_inspectedWebView->setPageScaleFactor(pageScaleFactor);
}
-void InspectorClientImpl::showContextMenu(float x, float y, PassRefPtrWillBeRawPtr<ContextMenuProvider> menuProvider)
-{
- m_inspectedWebView->showContextMenuAtPoint(x, y, menuProvider);
-}
-
void InspectorClientImpl::dispatchKeyEvent(const PlatformKeyboardEvent& event)
{
if (WebDevToolsAgentImpl* agent = devToolsAgent())

Powered by Google App Engine
This is Rietveld 408576698