2024-03-19 22:11:42 +01:00
|
|
|
diff --git base/process/set_process_title.cc base/process/set_process_title.cc
|
|
|
|
index 79ba3ac1913f8..46bcb4366d2f8 100644
|
|
|
|
--- base/process/set_process_title.cc
|
|
|
|
+++ base/process/set_process_title.cc
|
|
|
|
@@ -54,7 +54,7 @@ void SetProcessTitleFromCommandLine(const char** main_argv) {
|
|
|
|
bool have_argv0 = false;
|
|
|
|
|
|
|
|
#if BUILDFLAG(IS_LINUX) || BUILDFLAG(IS_CHROMEOS)
|
|
|
|
- DCHECK_EQ(base::PlatformThread::CurrentId(), getpid());
|
|
|
|
+ // DCHECK_EQ(base::PlatformThread::CurrentId(), getpid());
|
|
|
|
|
|
|
|
if (main_argv)
|
|
|
|
setproctitle_init(main_argv);
|
2020-10-08 21:54:42 +02:00
|
|
|
diff --git content/app/content_main.cc content/app/content_main.cc
|
2024-05-23 03:52:35 +02:00
|
|
|
index 96c28a7ce3183..3d60ab170e9a5 100644
|
2020-10-08 21:54:42 +02:00
|
|
|
--- content/app/content_main.cc
|
|
|
|
+++ content/app/content_main.cc
|
2024-04-23 22:06:00 +02:00
|
|
|
@@ -174,11 +174,8 @@ ContentMainParams::~ContentMainParams() = default;
|
2021-12-16 23:35:54 +01:00
|
|
|
ContentMainParams::ContentMainParams(ContentMainParams&&) = default;
|
|
|
|
ContentMainParams& ContentMainParams::operator=(ContentMainParams&&) = default;
|
2020-10-08 21:54:42 +02:00
|
|
|
|
2021-08-20 01:40:49 +02:00
|
|
|
-// This function must be marked with NO_STACK_PROTECTOR or it may crash on
|
|
|
|
-// return, see the --change-stack-guard-on-fork command line flag.
|
|
|
|
-int NO_STACK_PROTECTOR
|
2021-12-16 23:35:54 +01:00
|
|
|
-RunContentProcess(ContentMainParams params,
|
2021-08-20 01:40:49 +02:00
|
|
|
- ContentMainRunner* content_main_runner) {
|
2021-12-16 23:35:54 +01:00
|
|
|
+int ContentMainInitialize(ContentMainParams params,
|
2020-10-08 21:54:42 +02:00
|
|
|
+ ContentMainRunner* content_main_runner) {
|
2023-01-03 00:34:43 +01:00
|
|
|
base::FeatureList::FailOnFeatureAccessWithoutFeatureList();
|
2022-03-26 02:12:30 +01:00
|
|
|
#if BUILDFLAG(IS_CHROMEOS_LACROS)
|
|
|
|
// Lacros is launched with inherited priority. Revert to normal priority
|
2024-04-23 22:06:00 +02:00
|
|
|
@@ -186,9 +183,6 @@ RunContentProcess(ContentMainParams params,
|
2023-02-27 19:52:38 +01:00
|
|
|
base::PlatformThread::SetCurrentThreadType(base::ThreadType::kDefault);
|
2022-03-26 02:12:30 +01:00
|
|
|
#endif
|
2020-10-08 21:54:42 +02:00
|
|
|
int exit_code = -1;
|
2022-01-25 21:26:51 +01:00
|
|
|
-#if BUILDFLAG(IS_MAC)
|
2023-10-19 20:08:48 +02:00
|
|
|
- base::apple::ScopedNSAutoreleasePool autorelease_pool;
|
2020-10-08 21:54:42 +02:00
|
|
|
-#endif
|
|
|
|
|
|
|
|
// A flag to indicate whether Main() has been called before. On Android, we
|
|
|
|
// may re-run Main() without restarting the browser process. This flag
|
2024-05-23 03:52:35 +02:00
|
|
|
@@ -274,14 +268,6 @@ RunContentProcess(ContentMainParams params,
|
2021-02-11 23:12:15 +01:00
|
|
|
#endif
|
|
|
|
|
2022-01-25 21:26:51 +01:00
|
|
|
#if BUILDFLAG(IS_MAC)
|
2021-02-11 23:12:15 +01:00
|
|
|
- // We need this pool for all the objects created before we get to the event
|
|
|
|
- // loop, but we don't want to leave them hanging around until the app quits.
|
|
|
|
- // Each "main" needs to flush this pool right before it goes into its main
|
2024-05-23 03:52:35 +02:00
|
|
|
- // event loop to get rid of the cruft. TODO(crbug.com/40260311): This
|
2023-10-19 20:08:48 +02:00
|
|
|
- // is not safe. Each main loop should create and destroy its own pool; it
|
|
|
|
- // should not be flushing the pool at the base of the autorelease pool
|
|
|
|
- // stack.
|
|
|
|
- params.autorelease_pool = &autorelease_pool;
|
2020-10-08 21:54:42 +02:00
|
|
|
InitializeMac();
|
|
|
|
#endif
|
|
|
|
|
2024-05-23 03:52:35 +02:00
|
|
|
@@ -329,12 +315,46 @@ RunContentProcess(ContentMainParams params,
|
2020-10-08 21:54:42 +02:00
|
|
|
|
|
|
|
if (IsSubprocess())
|
|
|
|
CommonSubprocessInit();
|
2021-12-16 23:35:54 +01:00
|
|
|
- exit_code = content_main_runner->Run();
|
2020-10-08 21:54:42 +02:00
|
|
|
|
|
|
|
+ return exit_code;
|
|
|
|
+}
|
2023-10-19 20:08:48 +02:00
|
|
|
+
|
2021-08-20 01:40:49 +02:00
|
|
|
+// This function must be marked with NO_STACK_PROTECTOR or it may crash on
|
|
|
|
+// return, see the --change-stack-guard-on-fork command line flag.
|
|
|
|
+int NO_STACK_PROTECTOR
|
2021-12-16 23:35:54 +01:00
|
|
|
+ContentMainRun(ContentMainRunner* content_main_runner) {
|
2023-02-27 19:52:38 +01:00
|
|
|
+ return content_main_runner->Run();
|
2020-10-08 21:54:42 +02:00
|
|
|
+}
|
2023-02-27 19:52:38 +01:00
|
|
|
+
|
2021-12-16 23:35:54 +01:00
|
|
|
+void ContentMainShutdown(ContentMainRunner* content_main_runner) {
|
2023-04-04 20:00:13 +02:00
|
|
|
#if !BUILDFLAG(IS_ANDROID) && !BUILDFLAG(IS_IOS)
|
2021-08-20 01:40:49 +02:00
|
|
|
content_main_runner->Shutdown();
|
|
|
|
#endif
|
2020-10-08 21:54:42 +02:00
|
|
|
+}
|
|
|
|
+
|
2021-08-20 01:40:49 +02:00
|
|
|
+// This function must be marked with NO_STACK_PROTECTOR or it may crash on
|
|
|
|
+// return, see the --change-stack-guard-on-fork command line flag.
|
|
|
|
+int NO_STACK_PROTECTOR
|
2021-12-16 23:35:54 +01:00
|
|
|
+RunContentProcess(ContentMainParams params,
|
2021-08-20 01:40:49 +02:00
|
|
|
+ ContentMainRunner* content_main_runner) {
|
2022-01-25 21:26:51 +01:00
|
|
|
+#if BUILDFLAG(IS_MAC)
|
2021-02-11 23:12:15 +01:00
|
|
|
+ // We need this pool for all the objects created before we get to the event
|
|
|
|
+ // loop, but we don't want to leave them hanging around until the app quits.
|
|
|
|
+ // Each "main" needs to flush this pool right before it goes into its main
|
2023-10-19 20:08:48 +02:00
|
|
|
+ // event loop to get rid of the cruft. TODO(https://crbug.com/1424190): This
|
|
|
|
+ // is not safe. Each main loop should create and destroy its own pool; it
|
|
|
|
+ // should not be flushing the pool at the base of the autorelease pool
|
|
|
|
+ // stack.
|
|
|
|
+ base::apple::ScopedNSAutoreleasePool autorelease_pool;
|
|
|
|
+ params.autorelease_pool = &autorelease_pool;
|
2021-08-20 01:40:49 +02:00
|
|
|
+#endif
|
|
|
|
+
|
2021-12-16 23:35:54 +01:00
|
|
|
+ int exit_code = ContentMainInitialize(std::move(params), content_main_runner);
|
2020-10-08 21:54:42 +02:00
|
|
|
+ if (exit_code >= 0)
|
|
|
|
+ return exit_code;
|
2021-12-16 23:35:54 +01:00
|
|
|
+ exit_code = ContentMainRun(content_main_runner);
|
2021-08-20 01:40:49 +02:00
|
|
|
|
2021-12-16 23:35:54 +01:00
|
|
|
+ ContentMainShutdown(content_main_runner);
|
2020-10-08 21:54:42 +02:00
|
|
|
return exit_code;
|
|
|
|
}
|
|
|
|
|
|
|
|
diff --git content/app/content_main_runner_impl.cc content/app/content_main_runner_impl.cc
|
2024-05-23 03:52:35 +02:00
|
|
|
index 5e4c1f8d6c872..6df7bdba1cff7 100644
|
2020-10-08 21:54:42 +02:00
|
|
|
--- content/app/content_main_runner_impl.cc
|
|
|
|
+++ content/app/content_main_runner_impl.cc
|
2024-04-23 22:06:00 +02:00
|
|
|
@@ -47,6 +47,7 @@
|
2020-10-08 21:54:42 +02:00
|
|
|
#include "base/task/thread_pool/thread_pool_instance.h"
|
|
|
|
#include "base/threading/hang_watcher.h"
|
2021-03-04 23:36:57 +01:00
|
|
|
#include "base/threading/platform_thread.h"
|
2020-10-08 21:54:42 +02:00
|
|
|
+#include "base/threading/thread_restrictions.h"
|
2021-03-04 23:36:57 +01:00
|
|
|
#include "base/time/time.h"
|
2020-10-08 21:54:42 +02:00
|
|
|
#include "base/trace_event/trace_event.h"
|
2021-03-04 23:36:57 +01:00
|
|
|
#include "build/build_config.h"
|
2024-05-23 03:52:35 +02:00
|
|
|
@@ -1349,6 +1350,11 @@ void ContentMainRunnerImpl::Shutdown() {
|
2020-10-08 21:54:42 +02:00
|
|
|
is_shutdown_ = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
+void ContentMainRunnerImpl::ShutdownOnUIThread() {
|
|
|
|
+ base::ScopedAllowBaseSyncPrimitivesForTesting allow_wait;
|
|
|
|
+ discardable_shared_memory_manager_.reset();
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
// static
|
|
|
|
std::unique_ptr<ContentMainRunner> ContentMainRunner::Create() {
|
|
|
|
return ContentMainRunnerImpl::Create();
|
|
|
|
diff --git content/app/content_main_runner_impl.h content/app/content_main_runner_impl.h
|
2024-01-26 03:12:43 +01:00
|
|
|
index cbbc2f3ec12fa..f097b3cdded2f 100644
|
2020-10-08 21:54:42 +02:00
|
|
|
--- content/app/content_main_runner_impl.h
|
|
|
|
+++ content/app/content_main_runner_impl.h
|
2022-11-15 18:50:53 +01:00
|
|
|
@@ -27,7 +27,7 @@ class DiscardableSharedMemoryManager;
|
2022-04-21 20:58:48 +02:00
|
|
|
namespace content {
|
2021-01-28 00:13:12 +01:00
|
|
|
class MojoIpcSupport;
|
2020-10-08 21:54:42 +02:00
|
|
|
|
|
|
|
-class ContentMainRunnerImpl : public ContentMainRunner {
|
|
|
|
+class CONTENT_EXPORT ContentMainRunnerImpl : public ContentMainRunner {
|
|
|
|
public:
|
|
|
|
static std::unique_ptr<ContentMainRunnerImpl> Create();
|
|
|
|
|
2022-11-15 18:50:53 +01:00
|
|
|
@@ -46,6 +46,8 @@ class ContentMainRunnerImpl : public ContentMainRunner {
|
2021-12-16 23:35:54 +01:00
|
|
|
int Run() override;
|
2020-10-08 21:54:42 +02:00
|
|
|
void Shutdown() override;
|
|
|
|
|
|
|
|
+ void ShutdownOnUIThread();
|
|
|
|
+
|
|
|
|
private:
|
2021-12-16 23:35:54 +01:00
|
|
|
int RunBrowser(MainFunctionParams main_function_params,
|
2021-01-28 00:13:12 +01:00
|
|
|
bool start_minimal_browser);
|
2020-10-08 21:54:42 +02:00
|
|
|
diff --git content/public/app/content_main.h content/public/app/content_main.h
|
2024-01-26 03:12:43 +01:00
|
|
|
index 7f9b515297357..89b52e34fa31a 100644
|
2020-10-08 21:54:42 +02:00
|
|
|
--- content/public/app/content_main.h
|
|
|
|
+++ content/public/app/content_main.h
|
2024-01-26 03:12:43 +01:00
|
|
|
@@ -94,6 +94,13 @@ struct CONTENT_EXPORT ContentMainParams {
|
2021-12-16 23:35:54 +01:00
|
|
|
}
|
2020-10-08 21:54:42 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
+// Split RunContentProcess() into separate stages.
|
|
|
|
+CONTENT_EXPORT int ContentMainInitialize(
|
2021-12-16 23:35:54 +01:00
|
|
|
+ ContentMainParams params,
|
2020-10-08 21:54:42 +02:00
|
|
|
+ ContentMainRunner* content_main_runner);
|
2021-12-16 23:35:54 +01:00
|
|
|
+CONTENT_EXPORT int ContentMainRun(ContentMainRunner* content_main_runner);
|
|
|
|
+CONTENT_EXPORT void ContentMainShutdown(ContentMainRunner* content_main_runner);
|
2020-10-08 21:54:42 +02:00
|
|
|
+
|
2021-12-16 23:35:54 +01:00
|
|
|
CONTENT_EXPORT int RunContentProcess(ContentMainParams params,
|
2020-10-08 21:54:42 +02:00
|
|
|
ContentMainRunner* content_main_runner);
|
|
|
|
|