diff options
Diffstat (limited to 'chrome/browser/browser_process.h')
-rw-r--r-- | chrome/browser/browser_process.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/browser/browser_process.h b/chrome/browser/browser_process.h index 27ec3064..ae13a4c 100644 --- a/chrome/browser/browser_process.h +++ b/chrome/browser/browser_process.h @@ -66,6 +66,7 @@ class PrintPreviewTabController; namespace policy { class BrowserPolicyConnector; +class PolicyService; } namespace safe_browsing { @@ -123,8 +124,13 @@ class BrowserProcess { // Returns the thread that is used for health check of all browser threads. virtual WatchDogThread* watchdog_thread() = 0; + // Starts and manages the policy system. virtual policy::BrowserPolicyConnector* browser_policy_connector() = 0; + // This is the main interface for chromium components to retrieve policy + // information from the policy system. + virtual policy::PolicyService* policy_service() = 0; + virtual IconManager* icon_manager() = 0; virtual ThumbnailGenerator* GetThumbnailGenerator() = 0; |