2019-04-24 04:50:25 +02:00
|
|
|
diff --git content/browser/devtools/devtools_http_handler.cc content/browser/devtools/devtools_http_handler.cc
|
2023-04-04 20:00:13 +02:00
|
|
|
index 3083bd8c2a8d6..1966cb5bee7e9 100644
|
2019-04-24 04:50:25 +02:00
|
|
|
--- content/browser/devtools/devtools_http_handler.cc
|
|
|
|
+++ content/browser/devtools/devtools_http_handler.cc
|
2023-04-04 20:00:13 +02:00
|
|
|
@@ -588,7 +588,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
|
2023-04-04 20:00:13 +02:00
|
|
|
index fc00cee495e56..1979a0767edf1 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-04-04 20:00:13 +02:00
|
|
|
@@ -741,6 +741,17 @@ NavigationURLLoaderImpl::PrepareForNonInterceptedRequest() {
|
2021-10-19 00:17:16 +02:00
|
|
|
resource_request_->has_user_gesture, initiating_origin,
|
2022-01-25 21:26:51 +01:00
|
|
|
initiator_document_.AsRenderFrameHostIfValid(), &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,
|
|
|
|
+ initiator_document_.AsRenderFrameHostIfValid(), &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
|
2023-04-04 20:00:13 +02:00
|
|
|
index cd77eefb577e6..6cff0a16f2eab 100644
|
2020-03-30 22:13:42 +02:00
|
|
|
--- content/public/browser/content_browser_client.cc
|
|
|
|
+++ content/public/browser/content_browser_client.cc
|
2023-04-04 20:00:13 +02:00
|
|
|
@@ -968,7 +968,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,
|
2023-04-04 20:00:13 +02:00
|
|
|
@@ -977,6 +977,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
|
2023-04-04 20:00:13 +02:00
|
|
|
index 5500a0cec01ec..ea2fa77649607 100644
|
2019-04-24 04:50:25 +02:00
|
|
|
--- content/public/browser/content_browser_client.h
|
|
|
|
+++ content/public/browser/content_browser_client.h
|
2022-11-15 18:50:53 +01:00
|
|
|
@@ -35,6 +35,7 @@
|
2021-08-20 01:40:49 +02:00
|
|
|
#include "content/public/browser/login_delegate.h"
|
2021-01-28 00:13:12 +01:00
|
|
|
#include "content/public/browser/mojo_binder_policy_map.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"
|
2023-04-04 20:00:13 +02:00
|
|
|
@@ -1781,7 +1782,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,
|
2023-04-04 20:00:13 +02:00
|
|
|
@@ -1984,6 +1985,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.
|
2023-04-04 20:00:13 +02:00
|
|
|
@@ -2040,6 +2054,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
|
2023-01-30 18:43:54 +01:00
|
|
|
index 77f2c4fbf8c88..ddbacedde912a 100644
|
2017-04-20 21:28:17 +02:00
|
|
|
--- content/public/renderer/content_renderer_client.h
|
|
|
|
+++ content/public/renderer/content_renderer_client.h
|
2022-11-15 18:50:53 +01:00
|
|
|
@@ -96,6 +96,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) {}
|
|
|
|
|
2022-11-15 18:50:53 +01:00
|
|
|
@@ -315,6 +318,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
|
2023-04-04 20:00:13 +02:00
|
|
|
index 3d3645fa25131..2b72ced4c62c4 100644
|
2017-05-31 17:33:30 +02:00
|
|
|
--- content/renderer/render_thread_impl.cc
|
|
|
|
+++ content/renderer/render_thread_impl.cc
|
2023-04-04 20:00:13 +02:00
|
|
|
@@ -624,6 +624,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
|
2023-04-04 20:00:13 +02:00
|
|
|
index decef7b3d86c0..4efa8338dc3b5 100644
|
2017-01-19 00:37:56 +01:00
|
|
|
--- content/renderer/renderer_blink_platform_impl.cc
|
|
|
|
+++ content/renderer/renderer_blink_platform_impl.cc
|
2023-04-04 20:00:13 +02:00
|
|
|
@@ -969,6 +969,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
|
2023-04-04 20:00:13 +02:00
|
|
|
index a15ca0214e694..cdc2331096cc5 100644
|
2017-01-19 00:37:56 +01:00
|
|
|
--- content/renderer/renderer_blink_platform_impl.h
|
|
|
|
+++ content/renderer/renderer_blink_platform_impl.h
|
2023-04-04 20:00:13 +02:00
|
|
|
@@ -232,6 +232,9 @@ class CONTENT_EXPORT RendererBlinkPlatformImpl : public BlinkPlatformImpl {
|
|
|
|
base::TimeDelta MinimumIntervalOfUserLevelMemoryPressureSignal() override;
|
2023-01-30 18:43:54 +01:00
|
|
|
#endif
|
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-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-04-04 20:00:13 +02:00
|
|
|
index b9f50848e2e75..3ac9b7c3d088a 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-02-27 19:52:38 +01:00
|
|
|
@@ -299,7 +299,7 @@ bool HeadlessContentBrowserClient::IsSharedStorageSelectURLAllowed(
|
|
|
|
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-02-27 19:52:38 +01:00
|
|
|
@@ -309,6 +309,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-04-04 20:00:13 +02:00
|
|
|
index be37373d3d4e8..6741578a5f1b8 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-02-27 19:52:38 +01:00
|
|
|
@@ -79,7 +79,7 @@ class HeadlessContentBrowserClient : public content::ContentBrowserClient {
|
|
|
|
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,
|