From 3c3e543b448c8cc9865db9f5be6f1423c112d488 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Mon, 6 May 2024 11:57:27 -0400 Subject: [PATCH] alloy: Add missing geolocation pref registration (fixes #3694) --- libcef/browser/prefs/browser_prefs.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libcef/browser/prefs/browser_prefs.cc b/libcef/browser/prefs/browser_prefs.cc index 45034ce66..a20223905 100644 --- a/libcef/browser/prefs/browser_prefs.cc +++ b/libcef/browser/prefs/browser_prefs.cc @@ -23,6 +23,7 @@ #include "chrome/browser/media/webrtc/permission_bubble_media_access_handler.h" #include "chrome/browser/net/profile_network_context_service.h" #include "chrome/browser/net/system_network_context_manager.h" +#include "chrome/browser/permissions/quiet_notification_permission_ui_state.h" #include "chrome/browser/prefs/chrome_command_line_pref_store.h" #include "chrome/browser/preloading/preloading_prefs.h" #include "chrome/browser/printing/print_preview_sticky_settings.h" @@ -265,6 +266,7 @@ std::unique_ptr CreatePrefService(Profile* profile, prefetch::RegisterPredictionOptionsProfilePrefs(registry.get()); privacy_sandbox::RegisterProfilePrefs(registry.get()); ProfileNetworkContextService::RegisterProfilePrefs(registry.get()); + QuietNotificationPermissionUiState::RegisterProfilePrefs(registry.get()); RegisterBrowserViewProfilePrefs(registry.get()); safe_browsing::RegisterProfilePrefs(registry.get()); unified_consent::UnifiedConsentService::RegisterPrefs(registry.get());