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

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

Issue 11552009: Add support for calculating the position of the top controls in the cc layer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add missing CC_EXPORT...learn to run try jobs manually Created 7 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/renderer_host/render_widget_host_impl_android.cc
diff --git a/content/browser/renderer_host/render_widget_host_impl_android.cc b/content/browser/renderer_host/render_widget_host_impl_android.cc
index 92f8477eaeb6bd8a79dcc9eb080384e25aab9fa4..0ea5b2fc14a96f4901cec58c789192f3de4b21a4 100644
--- a/content/browser/renderer_host/render_widget_host_impl_android.cc
+++ b/content/browser/renderer_host/render_widget_host_impl_android.cc
@@ -4,6 +4,7 @@
#include "content/browser/renderer_host/render_widget_host_impl.h"
#include "content/port/browser/render_widget_host_view_port.h"
+#include "ui/gfx/vector2d_f.h"
namespace content {
@@ -18,7 +19,9 @@ void RenderWidgetHostImpl::OnUpdateFrameInfo(
page_scale_factor,
min_page_scale_factor,
max_page_scale_factor,
- content_size);
+ content_size,
+ gfx::Vector2dF(),
+ gfx::Vector2dF());
}
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698