blob: 83930968fb5aa9250b993a13f5c8752873794242 [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "android_webview/renderer/aw_render_view_ext.h"
#include "android_webview/common/mojom/frame.mojom.h"
#include "content/public/renderer/render_frame.h"
#include "third_party/blink/public/common/associated_interfaces/associated_interface_provider.h"
#include "third_party/blink/public/web/web_local_frame.h"
#include "third_party/blink/public/web/web_view.h"
namespace android_webview {
AwRenderViewExt::AwRenderViewExt(blink::WebView* web_view)
: blink::WebViewObserver(web_view) {
DCHECK(web_view != nullptr);
}
AwRenderViewExt::~AwRenderViewExt() {}
// static
void AwRenderViewExt::WebViewCreated(blink::WebView* web_view) {
new AwRenderViewExt(web_view); // |web_view| takes ownership.
}
void AwRenderViewExt::DidCommitCompositorFrame() {
UpdateContentsSize();
}
void AwRenderViewExt::DidUpdateMainFrameLayout() {
// The size may have changed.
needs_contents_size_update_ = true;
}
void AwRenderViewExt::OnDestruct() {
delete this;
}
void AwRenderViewExt::UpdateContentsSize() {
blink::WebView* webview = GetWebView();
blink::WebFrame* main_frame = webview->MainFrame();
// Even without out-of-process iframes, we now create RemoteFrames for the
// main frame when you navigate cross-process, to create a placeholder in the
// old process. This is necessary to support things like postMessage across
// windows that have references to each other. The RemoteFrame will
// immediately go away if there aren't any active frames left in the old
// process.
if (!main_frame->IsWebLocalFrame())
return;
if (!needs_contents_size_update_)
return;
needs_contents_size_update_ = false;
gfx::Size contents_size = main_frame->ToWebLocalFrame()->DocumentSize();
// Fall back to contentsPreferredMinimumSize if the mainFrame is reporting a
// 0x0 size (this happens during initial load).
if (contents_size.IsEmpty()) {
contents_size = webview->ContentsPreferredMinimumSize();
}
if (contents_size == last_sent_contents_size_)
return;
last_sent_contents_size_ = contents_size;
mojo::AssociatedRemote<mojom::FrameHost> frame_host_remote;
content::RenderFrame::FromWebFrame(main_frame->ToWebLocalFrame())
->GetRemoteAssociatedInterfaces()
->GetInterface(&frame_host_remote);
frame_host_remote->ContentsSizeChanged(contents_size);
}
} // namespace android_webview