| Index: content/browser/renderer_host/render_view_host_impl.cc
|
| diff --git a/content/browser/renderer_host/render_view_host_impl.cc b/content/browser/renderer_host/render_view_host_impl.cc
|
| index 06b993c81bcb65ae77d1f176c43db1e4cea1d67d..0e5106171739878ba1f47ddbea774f0c4efc89a6 100644
|
| --- a/content/browser/renderer_host/render_view_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_view_host_impl.cc
|
| @@ -1477,6 +1477,8 @@ void RenderViewHostImpl::EnableAutoResize(const gfx::Size& min_size,
|
| void RenderViewHostImpl::DisableAutoResize(const gfx::Size& new_size) {
|
| SetShouldAutoResize(false);
|
| Send(new ViewMsg_DisableAutoResize(GetRoutingID(), new_size));
|
| + if (!new_size.IsEmpty())
|
| + GetView()->SetSize(new_size);
|
| }
|
|
|
| void RenderViewHostImpl::CopyImageAt(int x, int y) {
|
|
|