| Index: chrome/browser/browser_process_impl.h
|
| diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h
|
| index 5353a12709a01691cfb96688387a815f8fbbd2fc..8eb9e043bd3dbd9bad76e770ddcf0b022fdd3c00 100644
|
| --- a/chrome/browser/browser_process_impl.h
|
| +++ b/chrome/browser/browser_process_impl.h
|
| @@ -21,6 +21,7 @@
|
| #include "chrome/browser/browser_process.h"
|
| #include "chrome/browser/download/download_status_updater.h"
|
| #include "chrome/browser/prefs/pref_change_registrar.h"
|
| +#include "chrome/browser/prefs/pref_member.h"
|
| #include "chrome/browser/tab_contents/thumbnail_generator.h"
|
| #include "chrome/common/notification_observer.h"
|
| #include "chrome/common/notification_registrar.h"
|
| @@ -86,6 +87,7 @@ class BrowserProcessImpl : public BrowserProcess,
|
| virtual TabCloseableStateWatcher* tab_closeable_state_watcher();
|
| virtual safe_browsing::ClientSideDetectionService*
|
| safe_browsing_detection_service();
|
| + virtual bool disable_plugin_finder_pref() const;
|
| virtual void CheckForInspectorFiles();
|
|
|
| // NotificationObserver methods
|
| @@ -253,6 +255,9 @@ class BrowserProcessImpl : public BrowserProcess,
|
| NotificationRegistrar notification_registrar_;
|
| scoped_refptr<PluginDataRemover> plugin_data_remover_;
|
|
|
| + // Monitors the disable plugin finder policy state.
|
| + BooleanPrefMember disable_plugin_finder_pref_;
|
| +
|
| #if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS)
|
| base::RepeatingTimer<BrowserProcessImpl> autoupdate_timer_;
|
|
|
|
|