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

Unified Diff: content/browser/android/content_view_core_impl.cc

Issue 868123002: Reset gesture detection upon page navigation for Aura (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename the method 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: content/browser/android/content_view_core_impl.cc
diff --git a/content/browser/android/content_view_core_impl.cc b/content/browser/android/content_view_core_impl.cc
index 312de234bb96f1205956e98f00ea6906eaf73093..48abdfa51bfd918465adf3c7e96bc322f6ff7159 100644
--- a/content/browser/android/content_view_core_impl.cc
+++ b/content/browser/android/content_view_core_impl.cc
@@ -1130,7 +1130,7 @@ void ContentViewCoreImpl::SetTextHandlesTemporarilyHidden(JNIEnv* env,
void ContentViewCoreImpl::ResetGestureDetection(JNIEnv* env, jobject obj) {
RenderWidgetHostViewAndroid* rwhv = GetRenderWidgetHostViewAndroid();
if (rwhv)
- rwhv->ResetGestureDetection();
+ rwhv->OnMainFrameNavigation();
jdduke (slow) 2015/01/30 18:49:48 Oh, let's keep |ResetGestureDetection| in RWHVAndr
lanwei 2015/02/04 21:10:05 Done.
}
void ContentViewCoreImpl::SetDoubleTapSupportEnabled(JNIEnv* env,

Powered by Google App Engine
This is Rietveld 408576698