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

Unified Diff: content/browser/renderer_host/render_view_host_delegate_view.h

Issue 1926173002: Erase LinkDisambiguation code on desktop. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: another merge conflict Created 4 years, 7 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: content/browser/renderer_host/render_view_host_delegate_view.h
diff --git a/content/browser/renderer_host/render_view_host_delegate_view.h b/content/browser/renderer_host/render_view_host_delegate_view.h
index e55c5a3e83235cda6970b703078100ab27a98420..56bed08ab49a86b08cecfedb8a3b8b8bd9c01b5e 100644
--- a/content/browser/renderer_host/render_view_host_delegate_view.h
+++ b/content/browser/renderer_host/render_view_host_delegate_view.h
@@ -82,22 +82,6 @@ class CONTENT_EXPORT RenderViewHostDelegateView {
virtual void HidePopupMenu() {};
#endif
-#if defined(USE_AURA)
- // Shows a Link Disambiguation Popup. |target_rect| is the area the user
- // touched that resulted in ambiguity, in DIPs in the host's coordinate
- // system, |zoomed_bitmap| is an enlarged image of that |target_rect|, and
- // |callback| is for forwarding on to the original scale web content.
- virtual void ShowDisambiguationPopup(
- const gfx::Rect& target_rect,
- const SkBitmap& zoomed_bitmap,
- const base::Callback<void(ui::GestureEvent*)>& gesture_cb,
- const base::Callback<void(ui::MouseEvent*)>& mouse_cb) {}
-
- // Hides the Link Disambiguation Popup, if it was showing, otherwise does
- // nothing.
- virtual void HideDisambiguationPopup() {}
-#endif
-
protected:
virtual ~RenderViewHostDelegateView() {}
};

Powered by Google App Engine
This is Rietveld 408576698