| Index: content/renderer/render_view_impl.cc
|
| diff --git a/content/renderer/render_view_impl.cc b/content/renderer/render_view_impl.cc
|
| index a264c8386af2c4cb13b96f8d9143249cf54a025f..a3b8e6aeb473c7fb187fc930e036a4b9811da792 100644
|
| --- a/content/renderer/render_view_impl.cc
|
| +++ b/content/renderer/render_view_impl.cc
|
| @@ -50,6 +50,7 @@
|
| #include "content/common/gpu/client/webgraphicscontext3d_command_buffer_impl.h"
|
| #include "content/common/input/input_event_utils.h"
|
| #include "content/common/input_messages.h"
|
| +#include "content/common/page_messages.h"
|
| #include "content/common/pepper_messages.h"
|
| #include "content/common/site_isolation_policy.h"
|
| #include "content/common/ssl_status_serialization.h"
|
| @@ -1403,6 +1404,8 @@ bool RenderViewImpl::OnMessageReceived(const IPC::Message& message) {
|
| OnReleaseDisambiguationPopupBitmap)
|
| IPC_MESSAGE_HANDLER(ViewMsg_ForceRedraw, OnForceRedraw)
|
| IPC_MESSAGE_HANDLER(ViewMsg_SelectWordAroundCaret, OnSelectWordAroundCaret)
|
| + IPC_MESSAGE_HANDLER(PageMsg_UpdateWindowScreenRect,
|
| + OnUpdateWindowScreenRect)
|
| #if defined(OS_ANDROID)
|
| IPC_MESSAGE_HANDLER(ViewMsg_UpdateTopControlsState,
|
| OnUpdateTopControlsState)
|
| @@ -1510,6 +1513,10 @@ void RenderViewImpl::OnSetInitialFocus(bool reverse) {
|
| webview()->setInitialFocus(reverse);
|
| }
|
|
|
| +void RenderViewImpl::OnUpdateWindowScreenRect(gfx::Rect window_screen_rect) {
|
| + RenderWidget::OnUpdateWindowScreenRect(window_screen_rect);
|
| +}
|
| +
|
| #if defined(OS_MACOSX)
|
| void RenderViewImpl::OnSetInLiveResize(bool in_live_resize) {
|
| if (!webview())
|
|
|