2019-10-28 22:12:35 +00:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2020-02-06 07:05:30 +00:00
|
|
|
From: Shelley Vohr <shelley.vohr@gmail.com>
|
|
|
|
Date: Tue, 4 Feb 2020 08:59:32 -0700
|
2019-10-28 22:12:35 +00:00
|
|
|
Subject: Revert "Remove ContentRendererClient::ShouldFork."
|
|
|
|
|
2020-02-06 07:05:30 +00:00
|
|
|
This reverts the CL at https://chromium-review.googlesource.com/c/chromium/src/+/1812128.
|
|
|
|
We use it to force a new renderer process for navigations, and need to start a new renderer process
|
|
|
|
for every navigation to keep Node.js working properly. Once Native Modules in the renderer process
|
|
|
|
are required to be NAPI or context aware (Electron v11), this patch can be removed.
|
2019-10-28 22:12:35 +00:00
|
|
|
|
|
|
|
diff --git a/chrome/renderer/chrome_content_renderer_client.cc b/chrome/renderer/chrome_content_renderer_client.cc
|
2020-07-14 01:13:34 +00:00
|
|
|
index e21bb23491f1261788b77fb8fa33e8afa0f60d3f..310ba0f4c7407bb1bdead4d451c5a53e85e6c440 100644
|
2019-10-28 22:12:35 +00:00
|
|
|
--- a/chrome/renderer/chrome_content_renderer_client.cc
|
|
|
|
+++ b/chrome/renderer/chrome_content_renderer_client.cc
|
2020-07-14 01:13:34 +00:00
|
|
|
@@ -1312,6 +1312,25 @@ bool ChromeContentRendererClient::AllowPopup() {
|
2020-02-06 07:05:30 +00:00
|
|
|
#endif
|
|
|
|
}
|
2019-10-28 22:12:35 +00:00
|
|
|
|
2020-02-06 07:05:30 +00:00
|
|
|
+bool ChromeContentRendererClient::ShouldFork(WebLocalFrame* frame,
|
|
|
|
+ const GURL& url,
|
|
|
|
+ const std::string& http_method,
|
|
|
|
+ bool is_initial_navigation,
|
|
|
|
+ bool is_server_redirect) {
|
2019-10-28 22:12:35 +00:00
|
|
|
+ DCHECK(!frame->Parent());
|
|
|
|
+
|
|
|
|
+ // If |url| matches one of the prerendered URLs, stop this navigation and try
|
|
|
|
+ // to swap in the prerendered page on the browser process. If the prerendered
|
|
|
|
+ // page no longer exists by the time the OpenURL IPC is handled, a normal
|
|
|
|
+ // navigation is attempted.
|
|
|
|
+ if (prerender_dispatcher_.get() &&
|
|
|
|
+ prerender_dispatcher_->IsPrerenderURL(url)) {
|
|
|
|
+ return true;
|
|
|
|
+ }
|
|
|
|
+
|
2020-02-06 07:05:30 +00:00
|
|
|
+ return false;
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
void ChromeContentRendererClient::WillSendRequest(
|
|
|
|
WebLocalFrame* frame,
|
|
|
|
ui::PageTransition transition_type,
|
|
|
|
diff --git a/chrome/renderer/chrome_content_renderer_client.h b/chrome/renderer/chrome_content_renderer_client.h
|
2020-07-14 01:13:34 +00:00
|
|
|
index 066a1a0690c013ffdb8ee043f8489e250ac430f0..4a2f67ba8e0aab4c46413e2f1268af9495038139 100644
|
2020-02-06 07:05:30 +00:00
|
|
|
--- a/chrome/renderer/chrome_content_renderer_client.h
|
|
|
|
+++ b/chrome/renderer/chrome_content_renderer_client.h
|
2020-05-26 20:06:26 +00:00
|
|
|
@@ -127,6 +127,11 @@ class ChromeContentRendererClient
|
2020-02-06 07:05:30 +00:00
|
|
|
base::SingleThreadTaskRunner* compositor_thread_task_runner) override;
|
|
|
|
bool RunIdleHandlerWhenWidgetsHidden() override;
|
|
|
|
bool AllowPopup() override;
|
|
|
|
+ bool ShouldFork(blink::WebLocalFrame* frame,
|
|
|
|
+ const GURL& url,
|
|
|
|
+ const std::string& http_method,
|
|
|
|
+ bool is_initial_navigation,
|
|
|
|
+ bool is_server_redirect) override;
|
|
|
|
void WillSendRequest(blink::WebLocalFrame* frame,
|
|
|
|
ui::PageTransition transition_type,
|
|
|
|
const blink::WebURL& url,
|
|
|
|
diff --git a/content/public/renderer/content_renderer_client.cc b/content/public/renderer/content_renderer_client.cc
|
2020-07-14 01:13:34 +00:00
|
|
|
index 6c7478594f980e3518fea2afc53d941b0f6c6a34..3b514f084ed16fc924f6a2909bd51056e5c58f6d 100644
|
2020-02-06 07:05:30 +00:00
|
|
|
--- a/content/public/renderer/content_renderer_client.cc
|
|
|
|
+++ b/content/public/renderer/content_renderer_client.cc
|
2020-05-26 20:06:26 +00:00
|
|
|
@@ -114,6 +114,14 @@ bool ContentRendererClient::HandleNavigation(
|
2019-10-28 22:12:35 +00:00
|
|
|
}
|
2020-02-06 07:05:30 +00:00
|
|
|
#endif
|
2019-10-28 22:12:35 +00:00
|
|
|
|
2020-02-06 07:05:30 +00:00
|
|
|
+bool ContentRendererClient::ShouldFork(blink::WebLocalFrame* frame,
|
|
|
|
+ const GURL& url,
|
|
|
|
+ const std::string& http_method,
|
|
|
|
+ bool is_initial_navigation,
|
|
|
|
+ bool is_server_redirect) {
|
|
|
|
+ return false;
|
2019-10-28 22:12:35 +00:00
|
|
|
+}
|
|
|
|
+
|
2020-02-06 07:05:30 +00:00
|
|
|
void ContentRendererClient::WillSendRequest(
|
|
|
|
blink::WebLocalFrame* frame,
|
|
|
|
ui::PageTransition transition_type,
|
|
|
|
diff --git a/content/public/renderer/content_renderer_client.h b/content/public/renderer/content_renderer_client.h
|
2020-07-14 01:13:34 +00:00
|
|
|
index cc6101c82e659bbc5a8568c166d5a56fae0c8d64..8309bb7f3f284b0930c13a7e75a7f9de64fedb73 100644
|
2020-02-06 07:05:30 +00:00
|
|
|
--- a/content/public/renderer/content_renderer_client.h
|
|
|
|
+++ b/content/public/renderer/content_renderer_client.h
|
2020-07-14 01:13:34 +00:00
|
|
|
@@ -227,6 +227,13 @@ class CONTENT_EXPORT ContentRendererClient {
|
2020-02-06 07:05:30 +00:00
|
|
|
bool is_redirect);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
+ // Returns true if we should fork a new process for the given navigation.
|
|
|
|
+ virtual bool ShouldFork(blink::WebLocalFrame* frame,
|
|
|
|
+ const GURL& url,
|
|
|
|
+ const std::string& http_method,
|
|
|
|
+ bool is_initial_navigation,
|
|
|
|
+ bool is_server_redirect);
|
|
|
|
+
|
|
|
|
// Notifies the embedder that the given frame is requesting the resource at
|
|
|
|
// |url|. If the function returns a valid |new_url|, the request must be
|
2020-04-30 20:20:44 +00:00
|
|
|
// updated to use it. The |force_ignore_site_for_cookies| output parameter
|
2020-02-06 07:05:30 +00:00
|
|
|
diff --git a/content/renderer/render_frame_impl.cc b/content/renderer/render_frame_impl.cc
|
2020-07-14 01:13:34 +00:00
|
|
|
index 1df3376ca5a8fefc926634c197a8bf043a4f3897..ad6c4fcca39d020fd2043c712a65b36346e06c82 100644
|
2020-02-06 07:05:30 +00:00
|
|
|
--- a/content/renderer/render_frame_impl.cc
|
|
|
|
+++ b/content/renderer/render_frame_impl.cc
|
2020-07-14 01:13:34 +00:00
|
|
|
@@ -5539,6 +5539,23 @@ void RenderFrameImpl::BeginNavigation(
|
2020-04-24 01:55:17 +00:00
|
|
|
// we can do a per-frame check here rather than a process-wide check.
|
2020-02-06 07:05:30 +00:00
|
|
|
bool should_fork = HasWebUIScheme(url) || HasWebUIScheme(old_url) ||
|
2020-04-24 01:55:17 +00:00
|
|
|
(enabled_bindings_ & kWebUIBindingsPolicyMask);
|
2019-10-28 22:12:35 +00:00
|
|
|
+
|
2020-02-06 07:05:30 +00:00
|
|
|
+ if (!should_fork && url.SchemeIs(url::kFileScheme)) {
|
|
|
|
+ // Fork non-file to file opens (see https://crbug.com/1031119). Note that
|
|
|
|
+ // this may fork unnecessarily if another tab (hosting a file or not)
|
|
|
|
+ // targeted this one before its initial navigation, but that shouldn't
|
|
|
|
+ // cause a problem.
|
|
|
|
+ should_fork = !old_url.SchemeIs(url::kFileScheme);
|
|
|
|
+ }
|
2019-10-28 22:12:35 +00:00
|
|
|
+
|
2020-02-06 07:05:30 +00:00
|
|
|
+ if (!should_fork) {
|
|
|
|
+ // Give the embedder a chance.
|
|
|
|
+ bool is_initial_navigation = render_view_->history_list_length_ == 0;
|
|
|
|
+ should_fork = GetContentClient()->renderer()->ShouldFork(
|
|
|
|
+ frame_, url, info->url_request.HttpMethod().Utf8(),
|
|
|
|
+ is_initial_navigation, false /* is_redirect */);
|
|
|
|
+ }
|
2019-10-28 22:12:35 +00:00
|
|
|
+
|
2020-02-06 07:05:30 +00:00
|
|
|
if (should_fork) {
|
|
|
|
OpenURL(std::move(info));
|
|
|
|
return; // Suppress the load here.
|