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

Unified Diff: content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java

Issue 2580583002: Moving hiding of paste menu from scroll start to scroll update (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
diff --git a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
index 27129e9ad29ee40f5913f838a88ce48c436d8921..5b5df09936866372d0c5972b91b7cfbeed1458a1 100644
--- a/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
+++ b/content/public/android/java/src/org/chromium/content/browser/ContentViewCore.java
@@ -1138,7 +1138,6 @@ public class ContentViewCore implements AccessibilityStateChangeListener, Displa
@CalledByNative
private void onScrollBeginEventAck() {
setTouchScrollInProgress(true);
- hidePastePopup();
updateGestureStateListener(GestureEventType.SCROLL_START);
}
@@ -1149,6 +1148,7 @@ public class ContentViewCore implements AccessibilityStateChangeListener, Displa
mGestureStateListenersIterator.hasNext();) {
mGestureStateListenersIterator.next().onScrollUpdateGestureConsumed();
}
+ hidePastePopup();
}
@SuppressWarnings("unused")
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698