2019-04-24 04:50:25 +02:00
|
|
|
diff --git content/browser/devtools/devtools_http_handler.cc content/browser/devtools/devtools_http_handler.cc
|
2024-01-26 03:12:43 +01:00
|
|
|
index b7430b7d7027f..721144dde86d8 100644
|
2019-04-24 04:50:25 +02:00
|
|
|
--- content/browser/devtools/devtools_http_handler.cc
|
|
|
|
+++ content/browser/devtools/devtools_http_handler.cc
|
2024-01-26 03:12:43 +01:00
|
|
|
@@ -589,7 +589,7 @@ void DevToolsHttpHandler::OnJsonRequest(
|
2023-01-03 00:34:43 +01:00
|
|
|
base::Value::Dict version;
|
|
|
|
version.Set("Protocol-Version", DevToolsAgentHost::GetProtocolVersion());
|
|
|
|
version.Set("WebKit-Version", GetWebKitVersion());
|
|
|
|
- version.Set("Browser", GetContentClient()->browser()->GetProduct());
|
|
|
|
+ version.Set("Browser", GetContentClient()->browser()->GetChromeProduct());
|
|
|
|
version.Set("User-Agent", GetContentClient()->browser()->GetUserAgent());
|
|
|
|
version.Set("V8-Version", V8_VERSION_STRING);
|
|
|
|
std::string host = info.GetHeaderValue("host");
|
2019-03-24 01:39:54 +01:00
|
|
|
diff --git content/browser/loader/navigation_url_loader_impl.cc content/browser/loader/navigation_url_loader_impl.cc
|
2024-01-26 03:12:43 +01:00
|
|
|
index 5da07b9eff248..72fc63ba456c5 100644
|
2019-03-24 01:39:54 +01:00
|
|
|
--- content/browser/loader/navigation_url_loader_impl.cc
|
|
|
|
+++ content/browser/loader/navigation_url_loader_impl.cc
|
2023-12-06 21:16:15 +01:00
|
|
|
@@ -751,6 +751,22 @@ NavigationURLLoaderImpl::PrepareForNonInterceptedRequest() {
|
2023-11-21 20:17:55 +01:00
|
|
|
: nullptr,
|
|
|
|
&loader_factory);
|
2019-09-04 17:13:32 +02:00
|
|
|
|
2020-07-08 19:23:29 +02:00
|
|
|
+ if (!handled) {
|
|
|
|
+ handled = GetContentClient()->browser()->HandleExternalProtocol(
|
|
|
|
+ web_contents_getter_, frame_tree_node_id_,
|
2022-03-26 02:12:30 +01:00
|
|
|
+ navigation_ui_data_.get(), request_info_->is_primary_main_frame,
|
|
|
|
+ FrameTreeNode::GloballyFindByID(frame_tree_node_id_)
|
|
|
|
+ ->IsInFencedFrameTree(),
|
|
|
|
+ request_info_->sandbox_flags,
|
2022-01-25 21:26:51 +01:00
|
|
|
+ *resource_request_, initiating_origin,
|
2023-11-21 20:17:55 +01:00
|
|
|
+ request_info_->initiator_document_token
|
|
|
|
+ ? RenderFrameHostImpl::FromDocumentToken(
|
|
|
|
+ request_info_->initiator_process_id,
|
|
|
|
+ *request_info_->initiator_document_token)
|
|
|
|
+ : nullptr,
|
|
|
|
+ &loader_factory);
|
2020-07-08 19:23:29 +02:00
|
|
|
+ }
|
2019-09-04 17:13:32 +02:00
|
|
|
+
|
2020-07-08 19:23:29 +02:00
|
|
|
if (loader_factory) {
|
|
|
|
factory = base::MakeRefCounted<network::WrapperSharedURLLoaderFactory>(
|
|
|
|
std::move(loader_factory));
|
2020-03-30 22:13:42 +02:00
|
|
|
diff --git content/public/browser/content_browser_client.cc content/public/browser/content_browser_client.cc
|
2024-01-26 03:12:43 +01:00
|
|
|
index d004abc6fe3da..3aeb9ab07d2a6 100644
|
2020-03-30 22:13:42 +02:00
|
|
|
--- content/public/browser/content_browser_client.cc
|
|
|
|
+++ content/public/browser/content_browser_client.cc
|
2024-01-26 03:12:43 +01:00
|
|
|
@@ -1070,7 +1070,7 @@ ContentBrowserClient::CreateURLLoaderHandlerForServiceWorkerNavigationPreload(
|
2021-10-19 00:17:16 +02:00
|
|
|
void ContentBrowserClient::OnNetworkServiceCreated(
|
|
|
|
network::mojom::NetworkService* network_service) {}
|
|
|
|
|
|
|
|
-void ContentBrowserClient::ConfigureNetworkContextParams(
|
|
|
|
+bool ContentBrowserClient::ConfigureNetworkContextParams(
|
|
|
|
BrowserContext* context,
|
|
|
|
bool in_memory,
|
|
|
|
const base::FilePath& relative_partition_path,
|
2024-01-26 03:12:43 +01:00
|
|
|
@@ -1079,6 +1079,7 @@ void ContentBrowserClient::ConfigureNetworkContextParams(
|
2021-10-19 00:17:16 +02:00
|
|
|
cert_verifier_creation_params) {
|
2021-12-16 23:35:54 +01:00
|
|
|
network_context_params->user_agent = GetUserAgentBasedOnPolicy(context);
|
2021-10-19 00:17:16 +02:00
|
|
|
network_context_params->accept_language = "en-us,en";
|
|
|
|
+ return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<base::FilePath>
|
2019-04-24 04:50:25 +02:00
|
|
|
diff --git content/public/browser/content_browser_client.h content/public/browser/content_browser_client.h
|
2024-01-26 03:12:43 +01:00
|
|
|
index d0a5dbc454670..0814479cf64e1 100644
|
2019-04-24 04:50:25 +02:00
|
|
|
--- content/public/browser/content_browser_client.h
|
|
|
|
+++ content/public/browser/content_browser_client.h
|
2024-01-26 03:12:43 +01:00
|
|
|
@@ -43,6 +43,7 @@
|
2021-01-28 00:13:12 +01:00
|
|
|
#include "content/public/browser/mojo_binder_policy_map.h"
|
2023-07-21 00:11:34 +02:00
|
|
|
#include "content/public/browser/privacy_sandbox_invoking_api.h"
|
2020-07-08 19:23:29 +02:00
|
|
|
#include "content/public/browser/storage_partition_config.h"
|
2019-11-12 17:11:44 +01:00
|
|
|
+#include "content/public/browser/web_contents.h"
|
2022-04-21 20:58:48 +02:00
|
|
|
#include "content/public/common/alternative_error_page_override_info.mojom-forward.h"
|
|
|
|
#include "content/public/common/page_visibility_state.h"
|
2022-05-19 12:28:44 +02:00
|
|
|
#include "content/public/common/window_container_type.mojom-forward.h"
|
2024-01-26 03:12:43 +01:00
|
|
|
@@ -1989,7 +1990,7 @@ class CONTENT_EXPORT ContentBrowserClient {
|
2021-10-19 00:17:16 +02:00
|
|
|
//
|
|
|
|
// If |relative_partition_path| is the empty string, it means this needs to
|
|
|
|
// create the default NetworkContext for the BrowserContext.
|
|
|
|
- virtual void ConfigureNetworkContextParams(
|
|
|
|
+ virtual bool ConfigureNetworkContextParams(
|
|
|
|
BrowserContext* context,
|
|
|
|
bool in_memory,
|
|
|
|
const base::FilePath& relative_partition_path,
|
2024-01-26 03:12:43 +01:00
|
|
|
@@ -2210,6 +2211,19 @@ class CONTENT_EXPORT ContentBrowserClient {
|
2022-01-25 21:26:51 +01:00
|
|
|
RenderFrameHost* initiator_document,
|
2020-02-10 18:10:17 +01:00
|
|
|
mojo::PendingRemote<network::mojom::URLLoaderFactory>* out_factory);
|
2019-04-24 04:50:25 +02:00
|
|
|
|
|
|
|
+ // Same as above, but exposing the whole ResourceRequest object.
|
|
|
|
+ virtual bool HandleExternalProtocol(
|
2019-10-01 15:55:16 +02:00
|
|
|
+ WebContents::Getter web_contents_getter,
|
2019-04-24 04:50:25 +02:00
|
|
|
+ int frame_tree_node_id,
|
|
|
|
+ NavigationUIData* navigation_data,
|
2022-03-26 02:12:30 +01:00
|
|
|
+ bool is_primary_main_frame,
|
|
|
|
+ bool is_in_fenced_frame_tree,
|
2021-10-19 00:17:16 +02:00
|
|
|
+ network::mojom::WebSandboxFlags sandbox_flags,
|
2019-04-24 04:50:25 +02:00
|
|
|
+ const network::ResourceRequest& request,
|
2022-01-25 21:26:51 +01:00
|
|
|
+ const absl::optional<url::Origin>& initiating_origin,
|
|
|
|
+ RenderFrameHost* initiator_document,
|
2020-02-10 18:10:17 +01:00
|
|
|
+ mojo::PendingRemote<network::mojom::URLLoaderFactory>* out_factory) { return false; }
|
2019-04-24 04:50:25 +02:00
|
|
|
+
|
2022-11-15 18:50:53 +01:00
|
|
|
// Creates an OverlayWindow to be used for video or Picture-in-Picture.
|
|
|
|
// This window will house the content shown when in Picture-in-Picture mode.
|
|
|
|
// This will return a new OverlayWindow.
|
2024-01-26 03:12:43 +01:00
|
|
|
@@ -2267,6 +2281,10 @@ class CONTENT_EXPORT ContentBrowserClient {
|
2019-04-24 04:50:25 +02:00
|
|
|
// Used as part of the user agent string.
|
2019-09-04 17:13:32 +02:00
|
|
|
virtual std::string GetProduct();
|
2019-04-24 04:50:25 +02:00
|
|
|
|
|
|
|
+ // Returns the Chrome-specific product string. This is used for compatibility
|
|
|
|
+ // purposes with external tools like Selenium.
|
2019-09-04 17:13:32 +02:00
|
|
|
+ virtual std::string GetChromeProduct() { return GetProduct(); }
|
2019-04-24 04:50:25 +02:00
|
|
|
+
|
2021-12-16 23:35:54 +01:00
|
|
|
// Returns the user agent. This can also return the reduced user agent, based
|
|
|
|
// on blink::features::kUserAgentReduction. Content may cache this value.
|
2019-09-04 17:13:32 +02:00
|
|
|
virtual std::string GetUserAgent();
|
2017-04-20 21:28:17 +02:00
|
|
|
diff --git content/public/renderer/content_renderer_client.h content/public/renderer/content_renderer_client.h
|
2024-01-26 03:12:43 +01:00
|
|
|
index ff20508d76a60..03a83b28fd678 100644
|
2017-04-20 21:28:17 +02:00
|
|
|
--- content/public/renderer/content_renderer_client.h
|
|
|
|
+++ content/public/renderer/content_renderer_client.h
|
2024-01-26 03:12:43 +01:00
|
|
|
@@ -101,6 +101,9 @@ class CONTENT_EXPORT ContentRendererClient {
|
2020-02-10 18:10:17 +01:00
|
|
|
// binding requests from RenderProcessHost::BindReceiver().
|
|
|
|
virtual void ExposeInterfacesToBrowser(mojo::BinderMap* binders) {}
|
2017-05-31 17:33:30 +02:00
|
|
|
|
|
|
|
+ // Notifies that the RenderThread can now send sync IPC messages.
|
|
|
|
+ virtual void RenderThreadConnected() {}
|
|
|
|
+
|
|
|
|
// Notifies that a new RenderFrame has been created.
|
|
|
|
virtual void RenderFrameCreated(RenderFrame* render_frame) {}
|
|
|
|
|
2024-01-26 03:12:43 +01:00
|
|
|
@@ -324,6 +327,10 @@ class CONTENT_EXPORT ContentRendererClient {
|
2017-12-07 22:44:24 +01:00
|
|
|
// This method may invalidate the frame.
|
|
|
|
virtual void RunScriptsAtDocumentIdle(RenderFrame* render_frame) {}
|
|
|
|
|
|
|
|
+ // Notifies that a DevTools agent has attached or detached.
|
2018-02-15 01:12:09 +01:00
|
|
|
+ virtual void DevToolsAgentAttached() {}
|
|
|
|
+ virtual void DevToolsAgentDetached() {}
|
2017-12-07 22:44:24 +01:00
|
|
|
+
|
|
|
|
// Allows subclasses to enable some runtime features before Blink has
|
|
|
|
// started.
|
|
|
|
virtual void SetRuntimeFeaturesDefaultsBeforeBlinkInitialization() {}
|
2017-05-31 17:33:30 +02:00
|
|
|
diff --git content/renderer/render_thread_impl.cc content/renderer/render_thread_impl.cc
|
2024-01-26 03:12:43 +01:00
|
|
|
index b67ee7e79eea7..13ac29a392b6e 100644
|
2017-05-31 17:33:30 +02:00
|
|
|
--- content/renderer/render_thread_impl.cc
|
|
|
|
+++ content/renderer/render_thread_impl.cc
|
2024-01-26 03:12:43 +01:00
|
|
|
@@ -545,6 +545,8 @@ void RenderThreadImpl::Init() {
|
2020-02-10 18:10:17 +01:00
|
|
|
GetContentClient()->renderer()->CreateURLLoaderThrottleProvider(
|
2021-04-21 00:52:34 +02:00
|
|
|
blink::URLLoaderThrottleProviderType::kFrame);
|
2017-05-31 17:33:30 +02:00
|
|
|
|
|
|
|
+ GetContentClient()->renderer()->RenderThreadConnected();
|
|
|
|
+
|
2022-08-23 03:37:40 +02:00
|
|
|
GetAssociatedInterfaceRegistry()->AddInterface<mojom::Renderer>(
|
|
|
|
base::BindRepeating(&RenderThreadImpl::OnRendererInterfaceReceiver,
|
|
|
|
base::Unretained(this)));
|
2017-01-19 00:37:56 +01:00
|
|
|
diff --git content/renderer/renderer_blink_platform_impl.cc content/renderer/renderer_blink_platform_impl.cc
|
2024-01-26 03:12:43 +01:00
|
|
|
index 619323f485c6a..324017a67e989 100644
|
2017-01-19 00:37:56 +01:00
|
|
|
--- content/renderer/renderer_blink_platform_impl.cc
|
|
|
|
+++ content/renderer/renderer_blink_platform_impl.cc
|
2024-01-26 03:12:43 +01:00
|
|
|
@@ -994,6 +994,15 @@ SkBitmap* RendererBlinkPlatformImpl::GetSadPageBitmap() {
|
2019-03-13 22:27:37 +01:00
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
2018-02-15 01:12:09 +01:00
|
|
|
|
|
|
|
+void RendererBlinkPlatformImpl::DevToolsAgentAttached() {
|
|
|
|
+ GetContentClient()->renderer()->DevToolsAgentAttached();
|
|
|
|
+}
|
|
|
|
+void RendererBlinkPlatformImpl::DevToolsAgentDetached() {
|
|
|
|
+ GetContentClient()->renderer()->DevToolsAgentDetached();
|
|
|
|
+}
|
|
|
|
+
|
2019-09-04 17:13:32 +02:00
|
|
|
+//------------------------------------------------------------------------------
|
|
|
|
+
|
2022-06-17 15:28:55 +02:00
|
|
|
std::unique_ptr<blink::WebV8ValueConverter>
|
|
|
|
RendererBlinkPlatformImpl::CreateWebV8ValueConverter() {
|
|
|
|
return std::make_unique<V8ValueConverterImpl>();
|
2017-01-19 00:37:56 +01:00
|
|
|
diff --git content/renderer/renderer_blink_platform_impl.h content/renderer/renderer_blink_platform_impl.h
|
2024-01-26 03:12:43 +01:00
|
|
|
index ecbcf12493f77..2c529b2f07a14 100644
|
2017-01-19 00:37:56 +01:00
|
|
|
--- content/renderer/renderer_blink_platform_impl.h
|
|
|
|
+++ content/renderer/renderer_blink_platform_impl.h
|
2024-01-26 03:12:43 +01:00
|
|
|
@@ -236,6 +236,9 @@ class CONTENT_EXPORT RendererBlinkPlatformImpl : public BlinkPlatformImpl {
|
2023-05-30 10:55:32 +02:00
|
|
|
InertAndMinimumIntervalOfUserLevelMemoryPressureSignal() override;
|
|
|
|
#endif // BUILDFLAG(IS_ANDROID)
|
2018-02-15 01:12:09 +01:00
|
|
|
|
|
|
|
+ void DevToolsAgentAttached() override;
|
|
|
|
+ void DevToolsAgentDetached() override;
|
|
|
|
+
|
2020-08-29 00:39:23 +02:00
|
|
|
// Tells this platform that the renderer is locked to a site (i.e., a scheme
|
|
|
|
// plus eTLD+1, such as https://google.com), or to a more specific origin.
|
|
|
|
void SetIsLockedToSite();
|
2023-07-25 18:57:30 +02:00
|
|
|
diff --git content/shell/browser/shell_content_browser_client.cc content/shell/browser/shell_content_browser_client.cc
|
2024-01-26 03:12:43 +01:00
|
|
|
index 3e0b86f6834c5..624610b39a399 100644
|
2023-07-25 18:57:30 +02:00
|
|
|
--- content/shell/browser/shell_content_browser_client.cc
|
|
|
|
+++ content/shell/browser/shell_content_browser_client.cc
|
2024-01-26 03:12:43 +01:00
|
|
|
@@ -703,7 +703,7 @@ void ShellContentBrowserClient::GetAdditionalMappedFilesForChildProcess(
|
2023-07-25 18:57:30 +02:00
|
|
|
#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) ||
|
|
|
|
// BUILDFLAG(IS_ANDROID)
|
|
|
|
|
|
|
|
-void ShellContentBrowserClient::ConfigureNetworkContextParams(
|
|
|
|
+bool ShellContentBrowserClient::ConfigureNetworkContextParams(
|
|
|
|
BrowserContext* context,
|
|
|
|
bool in_memory,
|
|
|
|
const base::FilePath& relative_partition_path,
|
2024-01-26 03:12:43 +01:00
|
|
|
@@ -712,6 +712,7 @@ void ShellContentBrowserClient::ConfigureNetworkContextParams(
|
2023-07-25 18:57:30 +02:00
|
|
|
cert_verifier_creation_params) {
|
|
|
|
ConfigureNetworkContextParamsForShell(context, network_context_params,
|
|
|
|
cert_verifier_creation_params);
|
|
|
|
+ return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<base::FilePath>
|
|
|
|
diff --git content/shell/browser/shell_content_browser_client.h content/shell/browser/shell_content_browser_client.h
|
2024-01-26 03:12:43 +01:00
|
|
|
index 83253e9feb3eb..ca0fd605ee613 100644
|
2023-07-25 18:57:30 +02:00
|
|
|
--- content/shell/browser/shell_content_browser_client.h
|
|
|
|
+++ content/shell/browser/shell_content_browser_client.h
|
2024-01-26 03:12:43 +01:00
|
|
|
@@ -140,7 +140,7 @@ class ShellContentBrowserClient : public ContentBrowserClient {
|
2023-07-25 18:57:30 +02:00
|
|
|
#endif // BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS) ||
|
|
|
|
// BUILDFLAG(IS_ANDROID)
|
|
|
|
device::GeolocationManager* GetGeolocationManager() override;
|
|
|
|
- void ConfigureNetworkContextParams(
|
|
|
|
+ bool ConfigureNetworkContextParams(
|
|
|
|
BrowserContext* context,
|
|
|
|
bool in_memory,
|
|
|
|
const base::FilePath& relative_partition_path,
|
2023-01-23 18:58:40 +01:00
|
|
|
diff --git headless/lib/browser/headless_content_browser_client.cc headless/lib/browser/headless_content_browser_client.cc
|
2023-12-06 21:16:15 +01:00
|
|
|
index 6a118e43698a1..82df4466206d2 100644
|
2023-01-23 18:58:40 +01:00
|
|
|
--- headless/lib/browser/headless_content_browser_client.cc
|
|
|
|
+++ headless/lib/browser/headless_content_browser_client.cc
|
2023-12-06 21:16:15 +01:00
|
|
|
@@ -297,7 +297,7 @@ bool HeadlessContentBrowserClient::IsSharedStorageSelectURLAllowed(
|
2023-02-27 19:52:38 +01:00
|
|
|
return true;
|
2023-01-23 18:58:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
-void HeadlessContentBrowserClient::ConfigureNetworkContextParams(
|
|
|
|
+bool HeadlessContentBrowserClient::ConfigureNetworkContextParams(
|
|
|
|
content::BrowserContext* context,
|
|
|
|
bool in_memory,
|
|
|
|
const base::FilePath& relative_partition_path,
|
2023-12-06 21:16:15 +01:00
|
|
|
@@ -307,6 +307,7 @@ void HeadlessContentBrowserClient::ConfigureNetworkContextParams(
|
2023-01-23 18:58:40 +01:00
|
|
|
HeadlessBrowserContextImpl::From(context)->ConfigureNetworkContextParams(
|
|
|
|
in_memory, relative_partition_path, network_context_params,
|
|
|
|
cert_verifier_creation_params);
|
|
|
|
+ return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string HeadlessContentBrowserClient::GetProduct() {
|
|
|
|
diff --git headless/lib/browser/headless_content_browser_client.h headless/lib/browser/headless_content_browser_client.h
|
2023-12-06 21:16:15 +01:00
|
|
|
index 18f90a11713b5..688549524fb17 100644
|
2023-01-23 18:58:40 +01:00
|
|
|
--- headless/lib/browser/headless_content_browser_client.h
|
|
|
|
+++ headless/lib/browser/headless_content_browser_client.h
|
2023-08-09 23:17:17 +02:00
|
|
|
@@ -80,7 +80,7 @@ class HeadlessContentBrowserClient : public content::ContentBrowserClient {
|
2023-02-27 19:52:38 +01:00
|
|
|
const url::Origin& top_frame_origin,
|
|
|
|
const url::Origin& accessing_origin) override;
|
2023-01-23 18:58:40 +01:00
|
|
|
|
|
|
|
- void ConfigureNetworkContextParams(
|
|
|
|
+ bool ConfigureNetworkContextParams(
|
|
|
|
content::BrowserContext* context,
|
|
|
|
bool in_memory,
|
|
|
|
const base::FilePath& relative_partition_path,
|