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

Unified Diff: chrome/browser/policy/configuration_policy_pref_store_unittest.cc

Issue 6894020: Adds async interface method to PersistentPrefStore. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: unittest for asyn reading Created 9 years, 8 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/browser/policy/configuration_policy_pref_store_unittest.cc
diff --git a/chrome/browser/policy/configuration_policy_pref_store_unittest.cc b/chrome/browser/policy/configuration_policy_pref_store_unittest.cc
index d4f515a3488de8d131e444b7b677bcda889b2376..717381ad6988d96c06a6e386ca77cb7d49583ebe 100644
--- a/chrome/browser/policy/configuration_policy_pref_store_unittest.cc
+++ b/chrome/browser/policy/configuration_policy_pref_store_unittest.cc
@@ -749,7 +749,7 @@ TEST_F(ConfigurationPolicyPrefStoreRefreshTest, Refresh) {
TEST_F(ConfigurationPolicyPrefStoreRefreshTest, Initialization) {
EXPECT_FALSE(store_->IsInitializationComplete());
- EXPECT_CALL(observer_, OnInitializationCompleted()).Times(1);
+ EXPECT_CALL(observer_, OnInitializationCompleted(true)).Times(1);
provider_.SetInitializationComplete(true);
EXPECT_FALSE(store_->IsInitializationComplete());

Powered by Google App Engine
This is Rietveld 408576698