Index: content/browser/android/content_view_core_impl.cc |
diff --git a/content/browser/android/content_view_core_impl.cc b/content/browser/android/content_view_core_impl.cc |
index dd82192ead00dca2a25dc481ca05abdf675ccfd6..5b4939ff185bd786324bf68c6725c55bfd20cedb 100644 |
--- a/content/browser/android/content_view_core_impl.cc |
+++ b/content/browser/android/content_view_core_impl.cc |
@@ -1372,8 +1372,12 @@ jboolean ContentViewCoreImpl::OnAnimate(JNIEnv* env, jobject /* obj */, |
void ContentViewCoreImpl::WasResized(JNIEnv* env, jobject obj) { |
RenderWidgetHostViewAndroid* view = GetRenderWidgetHostViewAndroid(); |
- if (view) |
+ if (view) { |
+ RenderWidgetHostImpl* host = RenderWidgetHostImpl::From( |
jdduke (slow)
2014/04/22 19:27:25
I'm probably not the best reviewer for this, but c
|
+ view->GetRenderWidgetHost()); |
+ host->SendScreenRects(); |
view->WasResized(); |
+ } |
} |
void ContentViewCoreImpl::ShowInterstitialPage( |