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

Unified Diff: content/browser/web_contents/web_contents_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/web_contents/web_contents_impl.cc
diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc
index a6a7c488357c29203be043f2c9003eb563eb9353..ef758b33feeba5607ce97a097a30d09b4515a023 100644
--- a/content/browser/web_contents/web_contents_impl.cc
+++ b/content/browser/web_contents/web_contents_impl.cc
@@ -2604,6 +2604,12 @@ void WebContentsImpl::DidNavigateMainFramePostCommit(
// clear the bubble when a user navigates to a named anchor in the same
// page.
UpdateTargetURL(render_frame_host->GetRenderViewHost(), GURL());
+
+ // Cancel all the active touch events on the main frame to prevent they
jdduke (slow) 2015/01/30 18:49:48 Let's leave this comment out.
lanwei 2015/02/04 21:10:05 Done.
+ // are passed to the navigated page.
+ RenderWidgetHostView* rwhv = GetRenderWidgetHostView();
+ if (rwhv)
+ rwhv->OnMainFrameNavigation();
jdduke (slow) 2015/01/30 18:49:48 I don't have a strong opinion on the wording here,
lanwei 2015/02/04 21:10:05 Done.
}
if (!details.is_in_page) {

Powered by Google App Engine
This is Rietveld 408576698