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

Unified Diff: content/browser/renderer_host/render_widget_host_impl.cc

Issue 330113002: Fixing flaky overscroll and touch exploration mode browser tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Implementing review feedback. Created 6 years, 6 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/renderer_host/render_widget_host_impl.cc
diff --git a/content/browser/renderer_host/render_widget_host_impl.cc b/content/browser/renderer_host/render_widget_host_impl.cc
index 52a3890647216c0e1f9c671b7b57436a6946d1f8..8ef6dee896669f9ff5e4c2a364330412f12c4169 100644
--- a/content/browser/renderer_host/render_widget_host_impl.cc
+++ b/content/browser/renderer_host/render_widget_host_impl.cc
@@ -731,6 +731,10 @@ bool RenderWidgetHostImpl::CanPauseForPendingResizeOrRepaints() {
return true;
}
+bool RenderWidgetHostImpl::IsResizeAckPendingForTesting() {
jam 2014/06/19 16:25:31 nit: inline this in the header as resize_ack_pendi
mfomitchev 2014/06/19 20:04:56 Done.
+ return resize_ack_pending_;
+}
+
void RenderWidgetHostImpl::WaitForSurface() {
TRACE_EVENT0("browser", "RenderWidgetHostImpl::WaitForSurface");

Powered by Google App Engine
This is Rietveld 408576698