blob: fdb8d648caa2641be1f690c335e1c58fa84ef9ef [file] [log] [blame]
// Copyright 2013 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/test_render_frame_host.h"
#include <memory>
#include <utility>
#include "base/guid.h"
#include "base/run_loop.h"
#include "content/browser/frame_host/frame_tree.h"
#include "content/browser/frame_host/navigation_handle_impl.h"
#include "content/browser/frame_host/navigation_request.h"
#include "content/browser/frame_host/navigator.h"
#include "content/browser/frame_host/navigator_impl.h"
#include "content/browser/frame_host/render_frame_host_delegate.h"
#include "content/browser/web_contents/web_contents_impl.h"
#include "content/common/frame_owner_properties.h"
#include "content/public/browser/navigation_throttle.h"
#include "content/public/common/navigation_policy.h"
#include "content/public/common/url_constants.h"
#include "content/public/common/url_utils.h"
#include "content/public/test/browser_side_navigation_test_utils.h"
#include "content/test/test_navigation_url_loader.h"
#include "content/test/test_render_view_host.h"
#include "content/test/test_render_widget_host.h"
#include "mojo/public/cpp/bindings/interface_request.h"
#include "net/base/load_flags.h"
#include "net/http/http_response_headers.h"
#include "third_party/blink/public/common/associated_interfaces/associated_interface_provider.h"
#include "third_party/blink/public/common/frame/frame_owner_element_type.h"
#include "third_party/blink/public/common/frame/frame_policy.h"
#include "third_party/blink/public/platform/modules/bluetooth/web_bluetooth.mojom.h"
#include "third_party/blink/public/platform/web_mixed_content_context_type.h"
#include "third_party/blink/public/web/web_tree_scope_type.h"
#include "ui/base/page_transition_types.h"
namespace content {
TestRenderFrameHostCreationObserver::TestRenderFrameHostCreationObserver(
WebContents* web_contents)
: WebContentsObserver(web_contents), last_created_frame_(nullptr) {}
TestRenderFrameHostCreationObserver::~TestRenderFrameHostCreationObserver() {
}
void TestRenderFrameHostCreationObserver::RenderFrameCreated(
RenderFrameHost* render_frame_host) {
last_created_frame_ = render_frame_host;
}
TestRenderFrameHost::TestRenderFrameHost(SiteInstance* site_instance,
RenderViewHostImpl* render_view_host,
RenderFrameHostDelegate* delegate,
FrameTree* frame_tree,
FrameTreeNode* frame_tree_node,
int32_t routing_id,
int32_t widget_routing_id,
int flags)
: RenderFrameHostImpl(site_instance,
render_view_host,
delegate,
frame_tree,
frame_tree_node,
routing_id,
widget_routing_id,
flags,
false),
child_creation_observer_(delegate ? delegate->GetAsWebContents()
: nullptr),
simulate_history_list_was_cleared_(false),
last_commit_was_error_page_(false) {}
TestRenderFrameHost::~TestRenderFrameHost() {
}
TestRenderViewHost* TestRenderFrameHost::GetRenderViewHost() {
return static_cast<TestRenderViewHost*>(
RenderFrameHostImpl::GetRenderViewHost());
}
MockRenderProcessHost* TestRenderFrameHost::GetProcess() {
return static_cast<MockRenderProcessHost*>(RenderFrameHostImpl::GetProcess());
}
TestRenderWidgetHost* TestRenderFrameHost::GetRenderWidgetHost() {
return static_cast<TestRenderWidgetHost*>(
RenderFrameHostImpl::GetRenderWidgetHost());
}
void TestRenderFrameHost::AddMessageToConsole(ConsoleMessageLevel level,
const std::string& message) {
console_messages_.push_back(message);
RenderFrameHostImpl::AddMessageToConsole(level, message);
}
void TestRenderFrameHost::InitializeRenderFrameIfNeeded() {
if (!render_view_host()->IsRenderViewLive()) {
render_view_host()->GetProcess()->Init();
RenderViewHostTester::For(render_view_host())->CreateTestRenderView(
base::string16(), MSG_ROUTING_NONE, MSG_ROUTING_NONE, false);
}
}
TestRenderFrameHost* TestRenderFrameHost::AppendChild(
const std::string& frame_name) {
std::string frame_unique_name = base::GenerateGUID();
OnCreateChildFrame(
GetProcess()->GetNextRoutingID(), CreateStubInterfaceProviderRequest(),
CreateStubDocumentInterfaceBrokerRequest(),
CreateStubDocumentInterfaceBrokerRequest(),
blink::WebTreeScopeType::kDocument, frame_name, frame_unique_name, false,
base::UnguessableToken::Create(), blink::FramePolicy(),
FrameOwnerProperties(), blink::FrameOwnerElementType::kIframe);
return static_cast<TestRenderFrameHost*>(
child_creation_observer_.last_created_frame());
}
void TestRenderFrameHost::Detach() {
OnDetach();
}
void TestRenderFrameHost::SimulateNavigationStart(const GURL& url) {
SendRendererInitiatedNavigationRequest(url, false);
}
void TestRenderFrameHost::SimulateRedirect(const GURL& new_url) {
NavigationRequest* request = frame_tree_node_->navigation_request();
if (!request->loader_for_testing()) {
base::RunLoop loop;
request->set_on_start_checks_complete_closure_for_testing(
loop.QuitClosure());
loop.Run();
}
TestNavigationURLLoader* url_loader =
static_cast<TestNavigationURLLoader*>(request->loader_for_testing());
CHECK(url_loader);
url_loader->SimulateServerRedirect(new_url);
}
void TestRenderFrameHost::SimulateNavigationCommit(const GURL& url) {
if (frame_tree_node_->navigation_request())
PrepareForCommit();
bool is_auto_subframe =
GetParent() && !frame_tree_node()->has_committed_real_load();
FrameHostMsg_DidCommitProvisionalLoad_Params params;
params.nav_entry_id = 0;
params.url = url;
params.origin = url::Origin::Create(url);
if (!GetParent())
params.transition = ui::PAGE_TRANSITION_LINK;
else if (is_auto_subframe)
params.transition = ui::PAGE_TRANSITION_AUTO_SUBFRAME;
else
params.transition = ui::PAGE_TRANSITION_MANUAL_SUBFRAME;
params.should_update_history = true;
params.did_create_new_entry = !is_auto_subframe;
params.gesture = NavigationGestureUser;
params.contents_mime_type = "text/html";
params.method = "GET";
params.http_status_code = 200;
params.socket_address.set_host("2001:db8::1");
params.socket_address.set_port(80);
params.history_list_was_cleared = simulate_history_list_was_cleared_;
params.original_request_url = url;
url::Replacements<char> replacements;
replacements.ClearRef();
// This approach to determining whether a navigation is to be treated as
// same document is not robust, as it will not handle pushState type
// navigation. Do not use elsewhere!
bool was_within_same_document =
(GetLastCommittedURL().is_valid() && !last_commit_was_error_page_ &&
url.ReplaceComponents(replacements) ==
GetLastCommittedURL().ReplaceComponents(replacements));
params.page_state = PageState::CreateForTesting(url, false, nullptr, nullptr);
SendNavigateWithParams(&params, was_within_same_document);
}
void TestRenderFrameHost::SimulateNavigationStop() {
if (is_loading()) {
OnDidStopLoading();
} else {
// Even if the RenderFrameHost is not loading, there may still be an
// ongoing navigation in the FrameTreeNode. Cancel this one as well.
frame_tree_node()->ResetNavigationRequest(false, true);
}
}
void TestRenderFrameHost::SendBeforeUnloadACK(bool proceed) {
base::TimeTicks now = base::TimeTicks::Now();
OnBeforeUnloadACK(proceed, now, now);
}
void TestRenderFrameHost::SimulateSwapOutACK() {
OnSwapOutACK();
}
void TestRenderFrameHost::SimulateFeaturePolicyHeader(
blink::mojom::FeaturePolicyFeature feature,
const std::vector<url::Origin>& whitelist) {
blink::ParsedFeaturePolicy header(1);
header[0].feature = feature;
header[0].matches_all_origins = false;
header[0].origins = whitelist;
DidSetFramePolicyHeaders(blink::WebSandboxFlags::kNone, header);
}
const std::vector<std::string>& TestRenderFrameHost::GetConsoleMessages() {
return console_messages_;
}
void TestRenderFrameHost::SendNavigate(int nav_entry_id,
bool did_create_new_entry,
const GURL& url) {
SendNavigateWithParameters(nav_entry_id, did_create_new_entry, false,
url, ui::PAGE_TRANSITION_LINK, 200,
ModificationCallback());
}
void TestRenderFrameHost::SendNavigateWithTransition(
int nav_entry_id,
bool did_create_new_entry,
const GURL& url,
ui::PageTransition transition) {
SendNavigateWithParameters(nav_entry_id, did_create_new_entry, false,
url, transition, 200, ModificationCallback());
}
void TestRenderFrameHost::SendNavigateWithReplacement(int nav_entry_id,
bool did_create_new_entry,
const GURL& url) {
SendNavigateWithParameters(nav_entry_id, did_create_new_entry, true,
url, ui::PAGE_TRANSITION_LINK, 200,
ModificationCallback());
}
void TestRenderFrameHost::SendNavigateWithModificationCallback(
int nav_entry_id,
bool did_create_new_entry,
const GURL& url,
const ModificationCallback& callback) {
SendNavigateWithParameters(nav_entry_id, did_create_new_entry, false,
url, ui::PAGE_TRANSITION_LINK, 200, callback);
}
void TestRenderFrameHost::SendNavigateWithParameters(
int nav_entry_id,
bool did_create_new_entry,
bool should_replace_entry,
const GURL& url,
ui::PageTransition transition,
int response_code,
const ModificationCallback& callback) {
// This approach to determining whether a navigation is to be treated as
// same document is not robust, as it will not handle pushState type
// navigation. Do not use elsewhere!
url::Replacements<char> replacements;
replacements.ClearRef();
bool was_within_same_document =
!ui::PageTransitionCoreTypeIs(transition, ui::PAGE_TRANSITION_RELOAD) &&
!ui::PageTransitionCoreTypeIs(transition, ui::PAGE_TRANSITION_TYPED) &&
(GetLastCommittedURL().is_valid() && !last_commit_was_error_page_ &&
url.ReplaceComponents(replacements) ==
GetLastCommittedURL().ReplaceComponents(replacements));
auto params = BuildDidCommitParams(nav_entry_id, did_create_new_entry,
should_replace_entry, url, transition,
response_code);
if (!callback.is_null())
callback.Run(params.get());
SendNavigateWithParams(params.get(), was_within_same_document);
}
void TestRenderFrameHost::SendNavigateWithParams(
FrameHostMsg_DidCommitProvisionalLoad_Params* params,
bool was_within_same_document) {
SendNavigateWithParamsAndInterfaceParams(
std::move(params),
BuildDidCommitInterfaceParams(was_within_same_document),
was_within_same_document);
}
void TestRenderFrameHost::SendNavigateWithParamsAndInterfaceParams(
FrameHostMsg_DidCommitProvisionalLoad_Params* params,
mojom::DidCommitProvisionalLoadInterfaceParamsPtr interface_params,
bool was_within_same_document) {
if (GetNavigationHandle() && !GetNavigationHandle()->GetResponseHeaders()) {
scoped_refptr<net::HttpResponseHeaders> response_headers =
new net::HttpResponseHeaders(std::string());
response_headers->AddHeader(std::string("Content-Type: ") +
params->contents_mime_type);
GetNavigationHandle()->set_response_headers_for_testing(response_headers);
}
if (was_within_same_document) {
DidCommitSameDocumentNavigation(
std::make_unique<FrameHostMsg_DidCommitProvisionalLoad_Params>(
*params));
} else {
DidCommitProvisionalLoad(
std::make_unique<FrameHostMsg_DidCommitProvisionalLoad_Params>(*params),
std::move(interface_params));
}
last_commit_was_error_page_ = params->url_is_unreachable;
}
void TestRenderFrameHost::SendRendererInitiatedNavigationRequest(
const GURL& url,
bool has_user_gesture) {
// Since this is renderer-initiated navigation, the RenderFrame must be
// initialized. Do it if it hasn't happened yet.
InitializeRenderFrameIfNeeded();
mojom::BeginNavigationParamsPtr begin_params =
mojom::BeginNavigationParams::New(
std::string() /* headers */, net::LOAD_NORMAL,
false /* skip_service_worker */,
blink::mojom::RequestContextType::HYPERLINK,
blink::WebMixedContentContextType::kBlockable,
false /* is_form_submission */, GURL() /* searchable_form_url */,
std::string() /* searchable_form_encoding */,
GURL() /* client_side_redirect_url */,
base::nullopt /* devtools_initiator_info */);
// TODO(mkwst): The initiator origin in |common_params| is missing/incorrect.
CommonNavigationParams common_params;
common_params.url = url;
common_params.referrer =
Referrer(GURL(), network::mojom::ReferrerPolicy::kDefault);
common_params.transition = ui::PAGE_TRANSITION_LINK;
common_params.navigation_type = FrameMsg_Navigate_Type::DIFFERENT_DOCUMENT;
common_params.has_user_gesture = has_user_gesture;
mojom::NavigationClientAssociatedPtr navigation_client_ptr;
if (IsPerNavigationMojoInterfaceEnabled()) {
GetRemoteAssociatedInterfaces()->GetInterface(&navigation_client_ptr);
BeginNavigation(common_params, std::move(begin_params), nullptr,
navigation_client_ptr.PassInterface(), nullptr);
} else {
BeginNavigation(common_params, std::move(begin_params), nullptr, nullptr,
nullptr);
}
}
void TestRenderFrameHost::DidChangeOpener(int opener_routing_id) {
OnDidChangeOpener(opener_routing_id);
}
void TestRenderFrameHost::DidEnforceInsecureRequestPolicy(
blink::WebInsecureRequestPolicy policy) {
EnforceInsecureRequestPolicy(policy);
}
void TestRenderFrameHost::PrepareForCommit() {
PrepareForCommitInternal(GURL(), net::HostPortPair(),
/* is_signed_exchange_inner_response=*/false);
}
void TestRenderFrameHost::PrepareForCommitDeprecatedForNavigationSimulator(
const net::HostPortPair& socket_address,
bool is_signed_exchange_inner_response) {
PrepareForCommitInternal(GURL(), socket_address,
is_signed_exchange_inner_response);
}
void TestRenderFrameHost::PrepareForCommitWithServerRedirect(
const GURL& redirect_url) {
PrepareForCommitInternal(redirect_url, net::HostPortPair(),
/* is_signed_exchange_inner_response=*/false);
}
void TestRenderFrameHost::PrepareForCommitInternal(
const GURL& redirect_url,
const net::HostPortPair& socket_address,
bool is_signed_exchange_inner_response) {
NavigationRequest* request = frame_tree_node_->navigation_request();
CHECK(request);
bool have_to_make_network_request =
IsURLHandledByNetworkStack(request->common_params().url) &&
!FrameMsg_Navigate_Type::IsSameDocument(
request->common_params().navigation_type);
// Simulate a beforeUnload ACK from the renderer if the browser is waiting for
// it. If it runs it will update the request state.
if (request->state() == NavigationRequest::WAITING_FOR_RENDERER_RESPONSE) {
static_cast<TestRenderFrameHost*>(frame_tree_node()->current_frame_host())
->SendBeforeUnloadACK(true);
}
if (!have_to_make_network_request)
return; // |request| is destructed by now.
CHECK(request->state() == NavigationRequest::STARTED);
if (!request->loader_for_testing()) {
base::RunLoop loop;
request->set_on_start_checks_complete_closure_for_testing(
loop.QuitClosure());
loop.Run();
}
TestNavigationURLLoader* url_loader =
static_cast<TestNavigationURLLoader*>(request->loader_for_testing());
CHECK(url_loader);
// If a non-empty |redirect_url| was provided, simulate a server redirect.
if (!redirect_url.is_empty())
url_loader->SimulateServerRedirect(redirect_url);
// Simulate the network stack commit.
scoped_refptr<network::ResourceResponse> response(
new network::ResourceResponse);
response->head.socket_address = socket_address;
response->head.is_signed_exchange_inner_response =
is_signed_exchange_inner_response;
// TODO(carlosk): Ideally, it should be possible someday to
// fully commit the navigation at this call to CallOnResponseStarted.
url_loader->CallOnResponseStarted(response, nullptr);
}
void TestRenderFrameHost::PrepareForCommitIfNecessary() {
if (frame_tree_node()->navigation_request())
PrepareForCommit();
}
void TestRenderFrameHost::SimulateCommitProcessed(
int64_t navigation_id,
std::unique_ptr<FrameHostMsg_DidCommitProvisionalLoad_Params> params,
service_manager::mojom::InterfaceProviderRequest interface_provider_request,
blink::mojom::DocumentInterfaceBrokerRequest
document_interface_broker_content_request,
blink::mojom::DocumentInterfaceBrokerRequest
document_interface_broker_blink_request,
bool same_document) {
CHECK(params);
blink::mojom::CommitResult result = blink::mojom::CommitResult::Ok;
bool did_commit = false;
if (!same_document) {
// Note: Although the code does not prohibit the running of multiple
// callbacks, no more than 1 callback will ever run, because navigation_id
// is unique across all callback storages.
{
auto callback_it = commit_callback_.find(navigation_id);
if (callback_it != commit_callback_.end())
std::move(callback_it->second).Run(result);
}
{
auto callback_it = navigation_client_commit_callback_.find(navigation_id);
if (callback_it != navigation_client_commit_callback_.end()) {
std::move(callback_it->second)
.Run(std::move(params),
mojom::DidCommitProvisionalLoadInterfaceParams::New(
std::move(interface_provider_request),
std::move(document_interface_broker_content_request),
std::move(document_interface_broker_blink_request)));
did_commit = true;
}
}
{
auto callback_it = commit_failed_callback_.find(navigation_id);
if (callback_it != commit_failed_callback_.end())
std::move(callback_it->second).Run(result);
}
{
auto callback_it =
navigation_client_commit_failed_callback_.find(navigation_id);
if (callback_it != navigation_client_commit_failed_callback_.end()) {
std::move(callback_it->second)
.Run(std::move(params),
mojom::DidCommitProvisionalLoadInterfaceParams::New(
std::move(interface_provider_request),
std::move(document_interface_broker_content_request),
std::move(document_interface_broker_blink_request)));
did_commit = true;
}
}
}
if (!did_commit) {
SendNavigateWithParamsAndInterfaceParams(
params.get(),
mojom::DidCommitProvisionalLoadInterfaceParams::New(
std::move(interface_provider_request),
std::move(document_interface_broker_content_request),
std::move(document_interface_broker_blink_request)),
same_document);
}
}
WebBluetoothServiceImpl*
TestRenderFrameHost::CreateWebBluetoothServiceForTesting() {
WebBluetoothServiceImpl* service =
RenderFrameHostImpl::CreateWebBluetoothService(
blink::mojom::WebBluetoothServiceRequest());
return service;
}
void TestRenderFrameHost::SendFramePolicy(
blink::WebSandboxFlags sandbox_flags,
const blink::ParsedFeaturePolicy& declared_policy) {
DidSetFramePolicyHeaders(sandbox_flags, declared_policy);
}
void TestRenderFrameHost::SendCommitNavigation(
mojom::NavigationClient* navigation_client,
NavigationRequest* navigation_request,
const network::ResourceResponseHead& head,
const content::CommonNavigationParams& common_params,
const content::CommitNavigationParams& commit_params,
network::mojom::URLLoaderClientEndpointsPtr url_loader_client_endpoints,
std::unique_ptr<blink::URLLoaderFactoryBundleInfo>
subresource_loader_factories,
base::Optional<std::vector<::content::mojom::TransferrableURLLoaderPtr>>
subresource_overrides,
blink::mojom::ControllerServiceWorkerInfoPtr controller,
network::mojom::URLLoaderFactoryPtr prefetch_loader_factory,
const base::UnguessableToken& devtools_navigation_token) {
if (!navigation_request)
return;
int64_t navigation_id =
navigation_request->navigation_handle()->GetNavigationId();
if (navigation_client) {
navigation_client_commit_callback_[navigation_id] =
BuildNavigationClientCommitNavigationCallback(navigation_request);
} else {
commit_callback_[navigation_id] =
BuildCommitNavigationCallback(navigation_request);
}
}
void TestRenderFrameHost::SendCommitFailedNavigation(
mojom::NavigationClient* navigation_client,
NavigationRequest* navigation_request,
const content::CommonNavigationParams& common_params,
const content::CommitNavigationParams& commit_params,
bool has_stale_copy_in_cache,
int32_t error_code,
const base::Optional<std::string>& error_page_content,
std::unique_ptr<blink::URLLoaderFactoryBundleInfo>
subresource_loader_factories) {
if (!navigation_request)
return;
int64_t navigation_id =
navigation_request->navigation_handle()->GetNavigationId();
if (navigation_client) {
navigation_client_commit_failed_callback_[navigation_id] =
BuildNavigationClientCommitFailedNavigationCallback(navigation_request);
} else {
commit_failed_callback_[navigation_id] =
BuildCommitFailedNavigationCallback(navigation_request);
}
}
std::unique_ptr<FrameHostMsg_DidCommitProvisionalLoad_Params>
TestRenderFrameHost::BuildDidCommitParams(int nav_entry_id,
bool did_create_new_entry,
bool should_replace_entry,
const GURL& url,
ui::PageTransition transition,
int response_code) {
auto params =
std::make_unique<FrameHostMsg_DidCommitProvisionalLoad_Params>();
params->nav_entry_id = nav_entry_id;
params->url = url;
params->transition = transition;
params->should_update_history = true;
params->did_create_new_entry = did_create_new_entry;
params->should_replace_current_entry = should_replace_entry;
params->gesture = NavigationGestureUser;
params->contents_mime_type = "text/html";
params->method = "GET";
params->http_status_code = response_code;
params->socket_address.set_host("2001:db8::1");
params->socket_address.set_port(80);
params->history_list_was_cleared = simulate_history_list_was_cleared_;
params->original_request_url = url;
// Simulate Blink assigning an item and document sequence number to the
// navigation.
params->item_sequence_number = base::Time::Now().ToDoubleT() * 1000000;
params->document_sequence_number = params->item_sequence_number + 1;
// When the user hits enter in the Omnibox without changing the URL, Blink
// behaves similarly to a reload and does not change the item and document
// sequence numbers. Simulate this behavior here too.
if (PageTransitionCoreTypeIs(transition, ui::PAGE_TRANSITION_TYPED)) {
NavigationEntryImpl* entry =
static_cast<NavigationEntryImpl*>(frame_tree_node()
->navigator()
->GetController()
->GetLastCommittedEntry());
if (entry && entry->GetURL() == url) {
FrameNavigationEntry* frame_entry =
entry->GetFrameEntry(frame_tree_node());
if (frame_entry) {
params->item_sequence_number = frame_entry->item_sequence_number();
params->document_sequence_number =
frame_entry->document_sequence_number();
}
}
}
// In most cases, the origin will match the URL's origin. Tests that need to
// check corner cases (like about:blank) should specify the origin param
// manually.
url::Origin origin = url::Origin::Create(url);
params->origin = origin;
params->page_state = PageState::CreateForTestingWithSequenceNumbers(
url, params->item_sequence_number, params->document_sequence_number);
return params;
}
mojom::DidCommitProvisionalLoadInterfaceParamsPtr
TestRenderFrameHost::BuildDidCommitInterfaceParams(bool is_same_document) {
service_manager::mojom::InterfaceProviderPtr interface_provider;
service_manager::mojom::InterfaceProviderRequest interface_provider_request;
blink::mojom::DocumentInterfaceBrokerPtr document_interface_broker_content;
blink::mojom::DocumentInterfaceBrokerPtr document_interface_broker_blink;
blink::mojom::DocumentInterfaceBrokerRequest
document_interface_broker_content_request;
blink::mojom::DocumentInterfaceBrokerRequest
document_interface_broker_blink_request;
if (!is_same_document) {
interface_provider_request = mojo::MakeRequest(&interface_provider);
document_interface_broker_content_request =
mojo::MakeRequest(&document_interface_broker_content);
document_interface_broker_blink_request =
mojo::MakeRequest(&document_interface_broker_blink);
}
auto interface_params = mojom::DidCommitProvisionalLoadInterfaceParams::New(
std::move(interface_provider_request),
std::move(document_interface_broker_content_request),
std::move(document_interface_broker_blink_request));
return interface_params;
}
void TestRenderFrameHost::AbortCommit(int64_t navigation_id) {
OnCrossDocumentCommitProcessed(navigation_id,
blink::mojom::CommitResult::Aborted);
}
// static
service_manager::mojom::InterfaceProviderRequest
TestRenderFrameHost::CreateStubInterfaceProviderRequest() {
::service_manager::mojom::InterfaceProviderPtr dead_interface_provider_proxy;
return mojo::MakeRequest(&dead_interface_provider_proxy);
}
// static
blink::mojom::DocumentInterfaceBrokerRequest
TestRenderFrameHost::CreateStubDocumentInterfaceBrokerRequest() {
::blink::mojom::DocumentInterfaceBrokerPtrInfo
dead_document_interface_broker_proxy;
return mojo::MakeRequest(&dead_document_interface_broker_proxy);
}
} // namespace content