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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240
|
// Copyright 2013 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/browser/renderer_host/render_frame_host_delegate.h"
#include <stddef.h>
#include <memory>
#include <string>
#include <utility>
#include "base/functional/callback.h"
#include "base/functional/callback_helpers.h"
#include "build/build_config.h"
#include "content/public/browser/cookie_access_details.h"
#include "content/public/browser/trust_token_access_details.h"
#include "ipc/ipc_message.h"
#include "services/network/public/cpp/permissions_policy/permissions_policy_declaration.h"
#include "third_party/blink/public/mojom/frame/fullscreen.mojom.h"
#include "third_party/blink/public/mojom/frame/text_autosizer_page_info.mojom.h"
#include "third_party/blink/public/mojom/mediastream/media_stream.mojom-shared.h"
#include "third_party/blink/public/mojom/mediastream/media_stream.mojom.h"
#include "ui/gfx/native_widget_types.h"
#include "url/gurl.h"
#include "url/origin.h"
namespace content {
blink::mojom::PartitionedPopinParamsPtr
PartitionedPopinOpenerProperties::AsMojom() const {
return blink::mojom::PartitionedPopinParams::New(top_frame_origin,
site_for_cookies);
}
bool RenderFrameHostDelegate::OnMessageReceived(
RenderFrameHostImpl* render_frame_host,
const IPC::Message& message) {
return false;
}
bool RenderFrameHostDelegate::DidAddMessageToConsole(
RenderFrameHostImpl* source_frame,
blink::mojom::ConsoleMessageLevel log_level,
const std::u16string& message,
int32_t line_no,
const std::u16string& source_id,
const std::optional<std::u16string>& untrusted_stack_trace) {
return false;
}
void RenderFrameHostDelegate::RequestMediaAccessPermission(
RenderFrameHostImpl* render_frame_host,
const MediaStreamRequest& request,
MediaResponseCallback callback) {
LOG(ERROR) << "RenderFrameHostDelegate::RequestMediaAccessPermission: "
<< "Not supported.";
std::move(callback).Run(blink::mojom::StreamDevicesSet(),
blink::mojom::MediaStreamRequestResult::NOT_SUPPORTED,
std::unique_ptr<MediaStreamUI>());
}
void RenderFrameHostDelegate::ProcessSelectAudioOutput(
const SelectAudioOutputRequest& request,
SelectAudioOutputCallback callback) {
LOG(ERROR) << "RenderFrameHostDelegate::ProcessSelectAudioOutput: "
<< "Not supported.";
std::move(callback).Run(
base::unexpected(content::SelectAudioOutputError::kNotSupported));
}
bool RenderFrameHostDelegate::CheckMediaAccessPermission(
RenderFrameHostImpl* render_frame_host,
const url::Origin& security_origin,
blink::mojom::MediaStreamType type) {
LOG(ERROR) << "RenderFrameHostDelegate::CheckMediaAccessPermission: "
<< "Not supported.";
return false;
}
ui::AXMode RenderFrameHostDelegate::GetAccessibilityMode() {
return ui::AXMode();
}
device::mojom::GeolocationContext*
RenderFrameHostDelegate::GetGeolocationContext() {
return nullptr;
}
#if BUILDFLAG(IS_ANDROID)
void RenderFrameHostDelegate::GetNFC(
RenderFrameHost* render_frame_host,
mojo::PendingReceiver<device::mojom::NFC> receiver) {}
#endif
bool RenderFrameHostDelegate::CanEnterFullscreenMode(
RenderFrameHostImpl* requesting_frame) {
return true;
}
void RenderFrameHostDelegate::FullscreenStateChanged(
RenderFrameHostImpl* rfh,
bool is_fullscreen,
blink::mojom::FullscreenOptionsPtr options) {}
bool RenderFrameHostDelegate::CanUseWindowingControls(RenderFrameHostImpl*) {
return false;
}
bool RenderFrameHostDelegate::IsInnerWebContentsForGuest() {
return false;
}
RenderFrameHostImpl* RenderFrameHostDelegate::GetFocusedFrame() {
return nullptr;
}
FrameTree* RenderFrameHostDelegate::CreateNewWindow(
RenderFrameHostImpl* opener,
const mojom::CreateNewWindowParams& params,
bool is_new_browsing_instance,
bool has_user_gesture,
SessionStorageNamespace* session_storage_namespace) {
return nullptr;
}
WebContents* RenderFrameHostDelegate::ShowCreatedWindow(
RenderFrameHostImpl* opener,
int main_frame_widget_route_id,
WindowOpenDisposition disposition,
const blink::mojom::WindowFeatures& window_features,
bool user_gesture) {
return nullptr;
}
bool RenderFrameHostDelegate::ShouldAllowRunningInsecureContent(
bool allowed_per_prefs,
const url::Origin& origin,
const GURL& resource_url) {
return false;
}
#if BUILDFLAG(IS_ANDROID)
base::android::ScopedJavaLocalRef<jobject>
RenderFrameHostDelegate::GetJavaRenderFrameHostDelegate() {
return nullptr;
}
#endif
Visibility RenderFrameHostDelegate::GetVisibility() {
return Visibility::HIDDEN;
}
std::vector<FrameTreeNode*> RenderFrameHostDelegate::GetUnattachedOwnedNodes(
RenderFrameHostImpl* owner) {
return {};
}
void RenderFrameHostDelegate::IsClipboardPasteAllowedByPolicy(
const ClipboardEndpoint& source,
const ClipboardEndpoint& destination,
const ClipboardMetadata& metadata,
ClipboardPasteData clipboard_paste_data,
IsClipboardPasteAllowedCallback callback) {
std::move(callback).Run(std::move(clipboard_paste_data));
}
bool RenderFrameHostDelegate::IsTransientActivationRequiredForHtmlFullscreen() {
return true;
}
bool RenderFrameHostDelegate::IsBackForwardCacheSupported() {
return false;
}
RenderWidgetHostImpl* RenderFrameHostDelegate::CreateNewPopupWidget(
base::SafeRef<SiteInstanceGroup> site_instance_group,
int32_t route_id,
mojo::PendingAssociatedReceiver<blink::mojom::PopupWidgetHost>
blink_popup_widget_host,
mojo::PendingAssociatedReceiver<blink::mojom::WidgetHost> blink_widget_host,
mojo::PendingAssociatedRemote<blink::mojom::Widget> blink_widget) {
return nullptr;
}
std::vector<RenderFrameHostImpl*>
RenderFrameHostDelegate::GetActiveTopLevelDocumentsInBrowsingContextGroup(
RenderFrameHostImpl* render_frame_host) {
return std::vector<RenderFrameHostImpl*>();
}
PrerenderHostRegistry* RenderFrameHostDelegate::GetPrerenderHostRegistry() {
return nullptr;
}
bool RenderFrameHostDelegate::IsAllowedToGoToEntryAtOffset(int32_t offset) {
return true;
}
bool RenderFrameHostDelegate::IsJavaScriptDialogShowing() const {
return false;
}
bool RenderFrameHostDelegate::ShouldIgnoreUnresponsiveRenderer() {
return false;
}
std::optional<network::ParsedPermissionsPolicy>
RenderFrameHostDelegate::GetPermissionsPolicyForIsolatedWebApp(
RenderFrameHostImpl* source) {
return network::ParsedPermissionsPolicy();
}
bool RenderFrameHostDelegate::IsPopup() const {
return false;
}
bool RenderFrameHostDelegate::IsPartitionedPopin() const {
return false;
}
const PartitionedPopinOpenerProperties&
RenderFrameHostDelegate::GetPartitionedPopinOpenerProperties() const {
NOTREACHED();
}
WebContents* RenderFrameHostDelegate::GetOpenedPartitionedPopin() const {
return nullptr;
}
gfx::NativeWindow RenderFrameHostDelegate::GetOwnerNativeWindow() {
return gfx::NativeWindow();
}
media::PictureInPictureEventsInfo::AutoPipInfo
RenderFrameHostDelegate::GetAutoPipInfo() const {
return media::PictureInPictureEventsInfo::AutoPipInfo();
}
} // namespace content
|