Chromium Code Reviews| Index: chrome/browser/browser_process_impl.h |
| diff --git a/chrome/browser/browser_process_impl.h b/chrome/browser/browser_process_impl.h |
| index 06e56b742cdf12ad734c21615f76b35ad6056cde..5937cc07721945749bd0f8ad6838f6e937fd8f36 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 |
| @@ -256,6 +258,9 @@ class BrowserProcessImpl : public BrowserProcess, |
| NotificationRegistrar notification_registrar_; |
| scoped_refptr<PluginDataRemover> plugin_data_remover_; |
| + // Monitors the disable plugin finder policy state. |
|
Bernhard Bauer
2011/02/24 10:37:07
Nit: this comment is a bit hard to parse. Maybe "M
pastarmovj
2011/02/24 16:02:20
Done.
|
| + BooleanPrefMember disable_plugin_finder_pref_; |
| + |
| #if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(OS_CHROMEOS) |
| base::RepeatingTimer<BrowserProcessImpl> autoupdate_timer_; |