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

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

Issue 19681003: Fix issue where window bounds were being passed with wrong coordinates. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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 c1696a7f013d76fec0ca9d4f544c8ca1446dc1bb..64653f28f7d1a2143f2747d0048a88634b96c6fe 100644
--- a/content/browser/renderer_host/render_widget_host_impl.cc
+++ b/content/browser/renderer_host/render_widget_host_impl.cc
@@ -1764,7 +1764,6 @@ void RenderWidgetHostImpl::OnUpdateScreenRectsAck() {
}
void RenderWidgetHostImpl::OnRequestMove(const gfx::Rect& pos) {
- // Note that we ignore the position.
if (view_) {
view_->SetBounds(pos);
Send(new ViewMsg_Move_ACK(routing_id_));

Powered by Google App Engine
This is Rietveld 408576698