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

Side by Side Diff: components/sync/base/sync_prefs_unittest.cc

Issue 2562733003: Remove duplicated user_prefs::TestingPrefServiceSyncable (Closed)
Patch Set: Fixed usage from .mm files Created 4 years 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 unified diff | Download patch
« no previous file with comments | « components/sync/base/DEPS ('k') | components/translate/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/sync/base/sync_prefs.h" 5 #include "components/sync/base/sync_prefs.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/message_loop/message_loop.h" 8 #include "base/message_loop/message_loop.h"
9 #include "components/pref_registry/testing_pref_service_syncable.h"
10 #include "components/prefs/pref_notifier_impl.h" 9 #include "components/prefs/pref_notifier_impl.h"
11 #include "components/prefs/pref_value_store.h" 10 #include "components/prefs/pref_value_store.h"
12 #include "components/prefs/testing_pref_service.h" 11 #include "components/prefs/testing_pref_service.h"
13 #include "components/sync/base/pref_names.h" 12 #include "components/sync/base/pref_names.h"
13 #include "components/sync_preferences/testing_pref_service_syncable.h"
14 #include "testing/gmock/include/gmock/gmock.h" 14 #include "testing/gmock/include/gmock/gmock.h"
15 #include "testing/gtest/include/gtest/gtest.h" 15 #include "testing/gtest/include/gtest/gtest.h"
16 16
17 namespace syncer { 17 namespace syncer {
18 18
19 namespace { 19 namespace {
20 20
21 using ::testing::InSequence; 21 using ::testing::InSequence;
22 using ::testing::StrictMock; 22 using ::testing::StrictMock;
23 23
24 class SyncPrefsTest : public testing::Test { 24 class SyncPrefsTest : public testing::Test {
25 protected: 25 protected:
26 void SetUp() override { 26 void SetUp() override {
27 SyncPrefs::RegisterProfilePrefs(pref_service_.registry()); 27 SyncPrefs::RegisterProfilePrefs(pref_service_.registry());
28 } 28 }
29 29
30 user_prefs::TestingPrefServiceSyncable pref_service_; 30 sync_preferences::TestingPrefServiceSyncable pref_service_;
31 31
32 private: 32 private:
33 base::MessageLoop loop_; 33 base::MessageLoop loop_;
34 }; 34 };
35 35
36 TEST_F(SyncPrefsTest, Basic) { 36 TEST_F(SyncPrefsTest, Basic) {
37 SyncPrefs sync_prefs(&pref_service_); 37 SyncPrefs sync_prefs(&pref_service_);
38 38
39 EXPECT_FALSE(sync_prefs.IsFirstSetupComplete()); 39 EXPECT_FALSE(sync_prefs.IsFirstSetupComplete());
40 sync_prefs.SetFirstSetupComplete(); 40 sync_prefs.SetFirstSetupComplete();
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 245
246 EXPECT_EQ(versions.size(), versions2.size()); 246 EXPECT_EQ(versions.size(), versions2.size());
247 for (auto map_iter : versions2) { 247 for (auto map_iter : versions2) {
248 EXPECT_EQ(versions[map_iter.first], map_iter.second); 248 EXPECT_EQ(versions[map_iter.first], map_iter.second);
249 } 249 }
250 } 250 }
251 251
252 } // namespace 252 } // namespace
253 253
254 } // namespace syncer 254 } // namespace syncer
OLDNEW
« no previous file with comments | « components/sync/base/DEPS ('k') | components/translate/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698