Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5430)

Unified Diff: chrome/test/testing_browser_process.h

Issue 6520008: Device policy infrastructure (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix nits Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/testing_browser_process.h
diff --git a/chrome/test/testing_browser_process.h b/chrome/test/testing_browser_process.h
index 6b8aca3692e6e8697f13061f567a750ec3e20d14..47adfa0e89610451e56f24de352fd353911c3ade 100644
--- a/chrome/test/testing_browser_process.h
+++ b/chrome/test/testing_browser_process.h
@@ -28,7 +28,7 @@ class WaitableEvent;
}
namespace policy {
-class ConfigurationPolicyProviderKeeper;
+class BrowserPolicyConnector;
}
namespace ui {
@@ -62,8 +62,7 @@ class TestingBrowserProcess : public BrowserProcess {
virtual PrefService* local_state();
- virtual policy::ConfigurationPolicyProviderKeeper*
- configuration_policy_provider_keeper();
+ virtual policy::BrowserPolicyConnector* browser_policy_connector();
virtual IconManager* icon_manager();
@@ -137,9 +136,7 @@ class TestingBrowserProcess : public BrowserProcess {
std::string app_locale_;
PrefService* pref_service_;
- bool created_configuration_policy_provider_keeper_;
- scoped_ptr<policy::ConfigurationPolicyProviderKeeper>
- configuration_policy_provider_keeper_;
+ scoped_ptr<policy::BrowserPolicyConnector> browser_policy_connector_;
scoped_ptr<GoogleURLTracker> google_url_tracker_;
DISALLOW_COPY_AND_ASSIGN(TestingBrowserProcess);

Powered by Google App Engine
This is Rietveld 408576698