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

Unified Diff: content/browser/web_contents/web_contents_view_aura.cc

Issue 1926173002: Erase LinkDisambiguation code on desktop. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix include Created 4 years, 8 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/web_contents/web_contents_view_aura.cc
diff --git a/content/browser/web_contents/web_contents_view_aura.cc b/content/browser/web_contents/web_contents_view_aura.cc
index c710eaf621f93fd8963383c75221c2a4d4c4dfb4..95f55f4959337aa718c4ce3c0d1582ecd2a8adbd 100644
--- a/content/browser/web_contents/web_contents_view_aura.cc
+++ b/content/browser/web_contents/web_contents_view_aura.cc
@@ -883,22 +883,6 @@ void WebContentsViewAura::TakeFocus(bool reverse) {
}
}
-void WebContentsViewAura::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) {
- if (delegate_) {
- delegate_->ShowDisambiguationPopup(target_rect, zoomed_bitmap,
- window_.get(), gesture_cb, mouse_cb);
- }
-}
-
-void WebContentsViewAura::HideDisambiguationPopup() {
- if (delegate_)
- delegate_->HideDisambiguationPopup();
-}
-
////////////////////////////////////////////////////////////////////////////////
// WebContentsViewAura, OverscrollControllerDelegate implementation:

Powered by Google App Engine
This is Rietveld 408576698