Index: chrome/browser/browser_process.h |
diff --git a/chrome/browser/browser_process.h b/chrome/browser/browser_process.h |
index 1bd5737892295d4009d84708559a809e2c627750..5a8292918e332ae0d18852165d89e49415f821a2 100644 |
--- a/chrome/browser/browser_process.h |
+++ b/chrome/browser/browser_process.h |
@@ -66,6 +66,8 @@ class PrintPreviewTabController; |
namespace policy { |
class BrowserPolicyConnector; |
+class ProfilePolicyConnector; |
Mattias Nissler (ping if slow)
2011/05/26 10:20:20
Please also give it a better name. Maybe UserPolic
sfeuz
2011/05/31 07:32:31
Done.
|
+class ConfigurationPolicyProvider; |
} |
namespace ui { |
@@ -154,6 +156,14 @@ class BrowserProcess { |
virtual policy::BrowserPolicyConnector* browser_policy_connector() = 0; |
+ virtual policy::ProfilePolicyConnector* user_policy_connector() = 0; |
+ |
+ virtual policy::ConfigurationPolicyProvider* |
+ recommended_cloud_policy_provider() = 0; |
+ |
+ virtual policy::ConfigurationPolicyProvider* |
+ managed_cloud_policy_provider() = 0; |
Mattias Nissler (ping if slow)
2011/05/26 10:20:20
We should wrap all the cloud-policy related stuff
sfeuz
2011/05/31 07:32:31
I see.
On the other hand: the cloud policy class-s
Mattias Nissler (ping if slow)
2011/05/31 14:14:19
It's not another player, but just a wrapper. Move
|
+ |
virtual IconManager* icon_manager() = 0; |
virtual ThumbnailGenerator* GetThumbnailGenerator() = 0; |