1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
// Copyright 2021 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/test/test_page_broadcast.h"
#include "third_party/blink/public/mojom/frame/frame.mojom.h"
#include "third_party/blink/public/mojom/frame/frame_replication_state.mojom.h"
#include "third_party/blink/public/mojom/frame/remote_frame.mojom.h"
namespace content {
TestPageBroadcast::TestPageBroadcast(
mojo::PendingAssociatedReceiver<blink::mojom::PageBroadcast> receiver)
: receiver_(this, std::move(receiver)) {}
TestPageBroadcast::~TestPageBroadcast() = default;
void TestPageBroadcast::FlushForTesting() {
receiver_.FlushForTesting();
}
// The user should add functionality as needed.
void TestPageBroadcast::SetPageLifecycleState(
blink::mojom::PageLifecycleStatePtr state,
blink::mojom::PageRestoreParamsPtr page_restore_params,
SetPageLifecycleStateCallback callback) {
std::move(callback).Run();
}
void TestPageBroadcast::AudioStateChanged(bool is_audio_playing) {}
void TestPageBroadcast::ActivatePrerenderedPage(
blink::mojom::PrerenderPageActivationParamsPtr
prerender_page_activation_params,
ActivatePrerenderedPageCallback callback) {
std::move(callback).Run();
}
void TestPageBroadcast::UpdateWebPreferences(
const blink::web_pref::WebPreferences& preferences) {}
void TestPageBroadcast::UpdateRendererPreferences(
const blink::RendererPreferences& preferences) {}
void TestPageBroadcast::SetHistoryIndexAndLength(int32_t history_index,
int32_t history_length) {}
void TestPageBroadcast::SetPageBaseBackgroundColor(
std::optional<SkColor> color) {}
void TestPageBroadcast::CreateRemoteMainFrame(
const blink::RemoteFrameToken& token,
const std::optional<blink::FrameToken>& opener_frame_token,
blink::mojom::FrameReplicationStatePtr replication_state,
bool is_loading,
const base::UnguessableToken& devtools_frame_token,
const std::optional<base::UnguessableToken>& navigation_metrics_token,
blink::mojom::RemoteFrameInterfacesFromBrowserPtr remote_frame_interfaces,
blink::mojom::RemoteMainFrameInterfacesPtr remote_main_frame_interfaces) {}
void TestPageBroadcast::UpdatePageBrowsingContextGroup(
const base::UnguessableToken& browsing_context_group_token) {}
void TestPageBroadcast::SetPageAttributionSupport(
network::mojom::AttributionSupport support) {}
void TestPageBroadcast::UpdateColorProviders(
const blink::ColorProviderColorMaps& color_provider_colors) {}
} // namespace content
|