| Index: chrome/browser/prefs/browser_prefs.cc
|
| diff --git a/chrome/browser/prefs/browser_prefs.cc b/chrome/browser/prefs/browser_prefs.cc
|
| index 38fe864ca3e51e0b7db29235504180fc250fa331..3048df6db6da8adc73137bcc090a2200e22a95d1 100644
|
| --- a/chrome/browser/prefs/browser_prefs.cc
|
| +++ b/chrome/browser/prefs/browser_prefs.cc
|
| @@ -108,6 +108,7 @@
|
| #include "content/public/browser/render_process_host.h"
|
| #include "extensions/features/features.h"
|
| #include "net/http/http_server_properties_manager.h"
|
| +#include "ppapi/features/features.h"
|
| #include "printing/features/features.h"
|
|
|
| #if BUILDFLAG(ENABLE_APP_LIST)
|
| @@ -377,7 +378,7 @@ void RegisterLocalState(PrefRegistrySimple* registry) {
|
| EasyUnlockService::RegisterPrefs(registry);
|
| #endif
|
|
|
| -#if defined(ENABLE_PLUGINS)
|
| +#if BUILDFLAG(ENABLE_PLUGINS)
|
| PluginFinder::RegisterPrefs(registry);
|
| #endif
|
|
|
| @@ -538,7 +539,7 @@ void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry) {
|
| ExtensionWelcomeNotification::RegisterProfilePrefs(registry);
|
| #endif
|
|
|
| -#if defined(ENABLE_PLUGINS)
|
| +#if BUILDFLAG(ENABLE_PLUGINS)
|
| PluginsUI::RegisterProfilePrefs(registry);
|
| #endif
|
|
|
|
|