| Index: chrome/common/chrome_features.cc
|
| diff --git a/chrome/common/chrome_features.cc b/chrome/common/chrome_features.cc
|
| index d65c80755fcfb9db18495787b914acdbdd7a5bc6..ae339e564382e67f0fc2d31bb88aefefd43679d4 100644
|
| --- a/chrome/common/chrome_features.cc
|
| +++ b/chrome/common/chrome_features.cc
|
| @@ -220,9 +220,14 @@ const base::Feature kModuleDatabase{"ModuleDatabase",
|
| // Enables the use of native notification centers instead of using the Message
|
| // Center for displaying the toasts.
|
| #if BUILDFLAG(ENABLE_NATIVE_NOTIFICATIONS)
|
| +#if defined(OS_MACOSX)
|
| +const base::Feature kNativeNotifications{"NativeNotifications",
|
| + base::FEATURE_ENABLED_BY_DEFAULT};
|
| +#else
|
| const base::Feature kNativeNotifications{"NativeNotifications",
|
| base::FEATURE_DISABLED_BY_DEFAULT};
|
| #endif
|
| +#endif // BUILDFLAG(ENABLE_NATIVE_NOTIFICATIONS)
|
|
|
| // If enabled, the list of content suggestions on the New Tab page will contain
|
| // pages that the user downloaded for later use.
|
|
|