| 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 f2f8ace175bbe0b6f985d2273aee64cc0b7bcd27..4af775a7df1c135f6c3959df4cf13243c039a217 100644
|
| --- a/content/browser/renderer_host/render_widget_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_widget_host_impl.cc
|
| @@ -581,6 +581,7 @@ bool RenderWidgetHostImpl::GetResizeParams(ResizeParams* resize_params) {
|
| resize_params->top_controls_height = view_->GetTopControlsHeight();
|
| resize_params->top_controls_shrink_blink_size =
|
| view_->DoTopControlsShrinkBlinkSize();
|
| + resize_params->bottom_controls_height = view_->GetBottomControlsHeight();
|
| resize_params->visible_viewport_size = view_->GetVisibleViewportSize();
|
| }
|
|
|
| @@ -600,6 +601,8 @@ bool RenderWidgetHostImpl::GetResizeParams(ResizeParams* resize_params) {
|
| resize_params->top_controls_height ||
|
| old_resize_params_->top_controls_shrink_blink_size !=
|
| resize_params->top_controls_shrink_blink_size ||
|
| + old_resize_params_->bottom_controls_height !=
|
| + resize_params->bottom_controls_height ||
|
| old_resize_params_->visible_viewport_size !=
|
| resize_params->visible_viewport_size;
|
|
|
|
|