2020-07-21 19:09:26 +02:00
|
|
|
diff --git chrome/browser/themes/theme_service.cc chrome/browser/themes/theme_service.cc
|
2022-04-21 20:58:48 +02:00
|
|
|
index a61c192f90de2..79b1fa46b2421 100644
|
2020-07-21 19:09:26 +02:00
|
|
|
--- chrome/browser/themes/theme_service.cc
|
|
|
|
+++ chrome/browser/themes/theme_service.cc
|
2022-04-21 20:58:48 +02:00
|
|
|
@@ -31,6 +31,7 @@
|
2020-07-21 19:09:26 +02:00
|
|
|
#include "base/threading/thread_task_runner_handle.h"
|
2022-02-21 23:23:40 +01:00
|
|
|
#include "base/trace_event/trace_event.h"
|
2020-07-21 19:09:26 +02:00
|
|
|
#include "build/build_config.h"
|
|
|
|
+#include "cef/libcef/features/runtime.h"
|
2021-11-10 22:57:31 +01:00
|
|
|
#include "chrome/browser/browser_features.h"
|
2020-07-21 19:09:26 +02:00
|
|
|
#include "chrome/browser/extensions/extension_service.h"
|
|
|
|
#include "chrome/browser/extensions/theme_installed_infobar_delegate.h"
|
2022-04-21 20:58:48 +02:00
|
|
|
@@ -67,6 +68,10 @@
|
2022-02-21 23:23:40 +01:00
|
|
|
#include "ui/color/color_id.h"
|
2021-11-10 22:57:31 +01:00
|
|
|
#include "ui/color/color_provider.h"
|
2020-07-21 19:09:26 +02:00
|
|
|
|
|
|
|
+#if BUILDFLAG(ENABLE_CEF)
|
|
|
|
+#include "cef/libcef/common/extensions/extensions_util.h"
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
#if BUILDFLAG(ENABLE_EXTENSIONS)
|
2021-06-04 03:34:56 +02:00
|
|
|
#include "base/scoped_observation.h"
|
2020-07-21 19:09:26 +02:00
|
|
|
#include "extensions/browser/extension_registry_observer.h"
|
2022-04-21 20:58:48 +02:00
|
|
|
@@ -570,11 +575,19 @@ void ThemeService::Init() {
|
2020-07-21 19:09:26 +02:00
|
|
|
// OnExtensionServiceReady. Otherwise, the ThemeObserver won't be
|
|
|
|
// constructed in time to observe the corresponding events.
|
|
|
|
#if BUILDFLAG(ENABLE_EXTENSIONS)
|
|
|
|
+#if BUILDFLAG(ENABLE_CEF)
|
|
|
|
+ const bool extensions_disabled = cef::IsAlloyRuntimeEnabled() &&
|
|
|
|
+ !extensions::ExtensionsEnabled();
|
|
|
|
+#else
|
|
|
|
+ const bool extensions_disabled = false;
|
|
|
|
+#endif
|
|
|
|
+ if (!extensions_disabled) {
|
|
|
|
theme_observer_ = std::make_unique<ThemeObserver>(this);
|
|
|
|
|
|
|
|
extensions::ExtensionSystem::Get(profile_)->ready().Post(
|
2020-12-02 23:31:49 +01:00
|
|
|
FROM_HERE, base::BindOnce(&ThemeService::OnExtensionServiceReady,
|
|
|
|
weak_ptr_factory_.GetWeakPtr()));
|
2020-07-21 19:09:26 +02:00
|
|
|
+ }
|
|
|
|
#endif
|
2021-04-21 00:52:34 +02:00
|
|
|
theme_syncable_service_ =
|
|
|
|
std::make_unique<ThemeSyncableService>(profile_, this);
|
2020-01-06 13:20:26 +01:00
|
|
|
diff --git chrome/browser/themes/theme_service_factory.cc chrome/browser/themes/theme_service_factory.cc
|
2022-01-25 21:26:51 +01:00
|
|
|
index db3162c7ef194..f80a5755876ee 100644
|
2020-01-06 13:20:26 +01:00
|
|
|
--- chrome/browser/themes/theme_service_factory.cc
|
|
|
|
+++ chrome/browser/themes/theme_service_factory.cc
|
2021-01-28 00:13:12 +01:00
|
|
|
@@ -7,6 +7,7 @@
|
2020-03-04 01:29:39 +01:00
|
|
|
#include "base/no_destructor.h"
|
2020-01-06 13:20:26 +01:00
|
|
|
#include "build/build_config.h"
|
2021-01-28 00:13:12 +01:00
|
|
|
#include "build/chromeos_buildflags.h"
|
2020-07-21 19:09:26 +02:00
|
|
|
+#include "cef/libcef/features/runtime.h"
|
2020-01-06 13:20:26 +01:00
|
|
|
#include "chrome/browser/extensions/extension_system_factory.h"
|
|
|
|
#include "chrome/browser/profiles/incognito_helpers.h"
|
|
|
|
#include "chrome/browser/profiles/profile.h"
|
2021-01-28 00:13:12 +01:00
|
|
|
@@ -30,6 +31,10 @@
|
2020-07-21 19:09:26 +02:00
|
|
|
#include "ui/views/linux_ui/linux_ui.h"
|
|
|
|
#endif
|
2020-01-06 13:20:26 +01:00
|
|
|
|
|
|
|
+#if BUILDFLAG(ENABLE_CEF)
|
|
|
|
+#include "cef/libcef/common/extensions/extensions_util.h"
|
|
|
|
+#endif
|
|
|
|
+
|
2020-07-21 19:09:26 +02:00
|
|
|
namespace {
|
|
|
|
|
|
|
|
const ThemeHelper& GetThemeHelper() {
|
2021-01-28 00:13:12 +01:00
|
|
|
@@ -73,7 +78,15 @@ ThemeServiceFactory::ThemeServiceFactory()
|
2020-01-06 13:20:26 +01:00
|
|
|
BrowserContextDependencyManager::GetInstance()) {
|
|
|
|
DependsOn(extensions::ExtensionRegistryFactory::GetInstance());
|
|
|
|
DependsOn(extensions::ExtensionPrefsFactory::GetInstance());
|
|
|
|
+#if BUILDFLAG(ENABLE_CEF)
|
2020-07-21 19:09:26 +02:00
|
|
|
+ const bool extensions_disabled = cef::IsAlloyRuntimeEnabled() &&
|
|
|
|
+ !extensions::ExtensionsEnabled();
|
|
|
|
+#else
|
|
|
|
+ const bool extensions_disabled = false;
|
2020-01-06 13:20:26 +01:00
|
|
|
+#endif
|
2020-07-21 19:09:26 +02:00
|
|
|
+ if (!extensions_disabled) {
|
2020-01-06 13:20:26 +01:00
|
|
|
DependsOn(extensions::ExtensionSystemFactory::GetInstance());
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
|
|
|
|
ThemeServiceFactory::~ThemeServiceFactory() {}
|