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

Unified Diff: chrome/browser/policy/cloud/cloud_policy_manager_unittest.cc

Issue 79023002: Support cloud policy for extensions on the desktop platforms. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed stub, again Created 7 years, 1 month 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/browser/policy/cloud/cloud_policy_manager_unittest.cc
diff --git a/chrome/browser/policy/cloud/cloud_policy_manager_unittest.cc b/chrome/browser/policy/cloud/cloud_policy_manager_unittest.cc
index bb88fc8e65da1c5b0f5420fa0b8d2bf813059081..44d613364f0ff2f00cd1340de21b3d8eeae92537 100644
--- a/chrome/browser/policy/cloud/cloud_policy_manager_unittest.cc
+++ b/chrome/browser/policy/cloud/cloud_policy_manager_unittest.cc
@@ -78,6 +78,8 @@ ConfigurationPolicyProvider* TestHarness::CreateProvider(
ConfigurationPolicyProvider* provider = new CloudPolicyManager(
PolicyNamespaceKey(dm_protocol::kChromeUserPolicyType, std::string()),
&store_,
+ task_runner,
+ task_runner,
task_runner);
Mock::VerifyAndClearExpectations(&store_);
return provider;
@@ -142,6 +144,8 @@ class TestCloudPolicyManager : public CloudPolicyManager {
dm_protocol::kChromeUserPolicyType,
std::string()),
store,
+ task_runner,
+ task_runner,
task_runner) {}
virtual ~TestCloudPolicyManager() {}

Powered by Google App Engine
This is Rietveld 408576698