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

Unified Diff: chrome/android/java/src/org/chromium/chrome/browser/tab/TabContextMenuPopulator.java

Issue 1986783002: Text selected with double-tap should not cause vibration (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed the platform macros 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: chrome/android/java/src/org/chromium/chrome/browser/tab/TabContextMenuPopulator.java
diff --git a/chrome/android/java/src/org/chromium/chrome/browser/tab/TabContextMenuPopulator.java b/chrome/android/java/src/org/chromium/chrome/browser/tab/TabContextMenuPopulator.java
index 47cc6c3d7e9b8d6929c82aff4057eec38090a907..975cafd8ed16650c059b6d61a54e50d7acbaa175 100644
--- a/chrome/android/java/src/org/chromium/chrome/browser/tab/TabContextMenuPopulator.java
+++ b/chrome/android/java/src/org/chromium/chrome/browser/tab/TabContextMenuPopulator.java
@@ -31,11 +31,6 @@ public class TabContextMenuPopulator implements ContextMenuPopulator {
}
@Override
- public boolean shouldShowContextMenu(ContextMenuParams params) {
- return mPopulator.shouldShowContextMenu(params);
- }
-
- @Override
public void buildContextMenu(ContextMenu menu, Context context, ContextMenuParams params) {
mPopulator.buildContextMenu(menu, context, params);
RewindableIterator<TabObserver> observers = mTab.getTabObservers();
@@ -48,4 +43,4 @@ public class TabContextMenuPopulator implements ContextMenuPopulator {
public boolean onItemSelected(ContextMenuHelper helper, ContextMenuParams params, int itemId) {
return mPopulator.onItemSelected(helper, params, itemId);
}
-}
+}

Powered by Google App Engine
This is Rietveld 408576698