2018-02-02 23:43:33 +01:00
|
|
|
diff --git chrome/browser/content_settings/host_content_settings_map_factory.cc chrome/browser/content_settings/host_content_settings_map_factory.cc
|
2020-03-30 22:13:42 +02:00
|
|
|
index 937b56a2e261..9e3877b06c59 100644
|
2018-02-02 23:43:33 +01:00
|
|
|
--- chrome/browser/content_settings/host_content_settings_map_factory.cc
|
|
|
|
+++ chrome/browser/content_settings/host_content_settings_map_factory.cc
|
2020-03-30 22:13:42 +02:00
|
|
|
@@ -8,6 +8,7 @@
|
2018-02-02 23:43:33 +01:00
|
|
|
|
|
|
|
#include "base/feature_list.h"
|
2020-03-30 22:13:42 +02:00
|
|
|
#include "build/buildflag.h"
|
2018-02-02 23:43:33 +01:00
|
|
|
+#include "cef/libcef/features/features.h"
|
|
|
|
#include "chrome/browser/profiles/off_the_record_profile_impl.h"
|
|
|
|
#include "chrome/browser/profiles/profile.h"
|
2018-05-20 15:51:42 +02:00
|
|
|
#include "chrome/browser/search_engines/template_url_service_factory.h"
|
2020-03-30 22:13:42 +02:00
|
|
|
@@ -19,6 +20,10 @@
|
2018-02-02 23:43:33 +01:00
|
|
|
#include "content/public/browser/browser_thread.h"
|
2018-04-19 17:44:42 +02:00
|
|
|
#include "extensions/buildflags/buildflags.h"
|
2018-02-02 23:43:33 +01:00
|
|
|
|
|
|
|
+#if BUILDFLAG(ENABLE_CEF)
|
|
|
|
+#include "cef/libcef/common/extensions/extensions_util.h"
|
|
|
|
+#endif
|
|
|
|
+
|
|
|
|
#if BUILDFLAG(ENABLE_EXTENSIONS)
|
|
|
|
#include "chrome/browser/extensions/extension_service.h"
|
|
|
|
#include "extensions/browser/extension_system.h"
|
2020-03-30 22:13:42 +02:00
|
|
|
@@ -47,8 +52,14 @@ HostContentSettingsMapFactory::HostContentSettingsMapFactory()
|
2018-02-02 23:43:33 +01:00
|
|
|
DependsOn(SupervisedUserSettingsServiceFactory::GetInstance());
|
|
|
|
#endif
|
|
|
|
#if BUILDFLAG(ENABLE_EXTENSIONS)
|
|
|
|
+#if BUILDFLAG(ENABLE_CEF)
|
|
|
|
+ if (extensions::ExtensionsEnabled()) {
|
|
|
|
+#endif
|
|
|
|
DependsOn(
|
|
|
|
extensions::ExtensionsBrowserClient::Get()->GetExtensionSystemFactory());
|
|
|
|
+#if BUILDFLAG(ENABLE_CEF)
|
|
|
|
+ }
|
|
|
|
+#endif
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2020-03-30 22:13:42 +02:00
|
|
|
@@ -89,10 +100,16 @@ scoped_refptr<RefcountedKeyedService>
|
|
|
|
permissions::features::kPermissionDelegation)));
|
2018-02-02 23:43:33 +01:00
|
|
|
|
|
|
|
#if BUILDFLAG(ENABLE_EXTENSIONS)
|
|
|
|
+#if BUILDFLAG(ENABLE_CEF)
|
|
|
|
+ if (extensions::ExtensionsEnabled()) {
|
|
|
|
+#endif
|
|
|
|
// These must be registered before before the HostSettings are passed over to
|
|
|
|
// the IOThread. Simplest to do this on construction.
|
2018-06-08 18:53:10 +02:00
|
|
|
extensions::ExtensionService::RegisterContentSettings(settings_map.get(),
|
|
|
|
profile);
|
2018-02-02 23:43:33 +01:00
|
|
|
+#if BUILDFLAG(ENABLE_CEF)
|
|
|
|
+ }
|
|
|
|
+#endif
|
|
|
|
#endif // BUILDFLAG(ENABLE_EXTENSIONS)
|
|
|
|
#if BUILDFLAG(ENABLE_SUPERVISED_USERS)
|
|
|
|
SupervisedUserSettingsService* supervised_service =
|