blob: 319964538cc6f296cbeee83ad17484db397ce022 [file] [log] [blame]
// Copyright 2017 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 "content/test/frame_host_interceptor.h"
#include <utility>
#include "content/browser/frame_host/render_frame_host_impl.h"
#include "content/common/frame.mojom-test-utils.h"
#include "content/common/frame_messages.h"
#include "content/public/browser/render_frame_host.h"
#include "content/public/browser/web_contents.h"
namespace content {
// Responsible for intercepting mojom::FrameHost messages being disptached to
// a given RenderFrameHostImpl.
class FrameHostInterceptor::FrameAgent
: public mojom::FrameHostInterceptorForTesting {
public:
FrameAgent(FrameHostInterceptor* interceptor, RenderFrameHost* rfh)
: interceptor_(interceptor),
rfhi_(static_cast<RenderFrameHostImpl*>(rfh)),
impl_(binding().SwapImplForTesting(this)) {}
~FrameAgent() override {
auto* old_impl = binding().SwapImplForTesting(impl_);
// TODO(https://crbug.com/729021): Investigate the scenario where
// |old_impl| can be nullptr if the renderer process is killed.
DCHECK_EQ(this, old_impl);
}
protected:
mojo::AssociatedBinding<mojom::FrameHost>& binding() {
return rfhi_->frame_host_binding_for_testing();
}
// mojom::FrameHostInterceptorForTesting:
FrameHost* GetForwardingInterface() override { return impl_; }
void BeginNavigation(
const CommonNavigationParams& common_params,
mojom::BeginNavigationParamsPtr begin_params,
blink::mojom::BlobURLTokenPtr blob_url_token,
mojom::NavigationClientAssociatedPtrInfo navigation_client,
blink::mojom::NavigationInitiatorPtr navigation_initiator) override {
CommonNavigationParams overrideable_common_params = common_params;
if (interceptor_->WillDispatchBeginNavigation(
rfhi_, &overrideable_common_params, &begin_params, &blob_url_token,
&navigation_client, &navigation_initiator)) {
GetForwardingInterface()->BeginNavigation(
overrideable_common_params, std::move(begin_params),
std::move(blob_url_token), std::move(navigation_client),
std::move(navigation_initiator));
}
}
private:
FrameHostInterceptor* interceptor_;
RenderFrameHostImpl* rfhi_;
mojom::FrameHost* impl_;
DISALLOW_COPY_AND_ASSIGN(FrameAgent);
};
FrameHostInterceptor::FrameHostInterceptor(WebContents* web_contents)
: WebContentsObserver(web_contents) {
for (auto* rfh : web_contents->GetAllFrames()) {
if (rfh->IsRenderFrameLive())
RenderFrameCreated(rfh);
}
}
FrameHostInterceptor::~FrameHostInterceptor() = default;
bool FrameHostInterceptor::WillDispatchBeginNavigation(
RenderFrameHost* render_frame_host,
CommonNavigationParams* common_params,
mojom::BeginNavigationParamsPtr* begin_params,
blink::mojom::BlobURLTokenPtr* blob_url_token,
mojom::NavigationClientAssociatedPtrInfo* navigation_client,
blink::mojom::NavigationInitiatorPtr* navigation_initiator) {
return true;
}
void FrameHostInterceptor::RenderFrameCreated(
RenderFrameHost* render_frame_host) {
bool did_insert;
std::tie(std::ignore, did_insert) = frame_agents_.emplace(
render_frame_host, std::make_unique<FrameAgent>(this, render_frame_host));
DCHECK(did_insert);
}
void FrameHostInterceptor::RenderFrameDeleted(
RenderFrameHost* render_frame_host) {
bool did_remove = !!frame_agents_.erase(render_frame_host);
DCHECK(did_remove);
}
} // namespace content