| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "chrome/browser/sync/profile_sync_service.h" | |
| 6 #include "chrome/browser/sync/test/integration/preferences_helper.h" | 5 #include "chrome/browser/sync/test/integration/preferences_helper.h" |
| 7 #include "chrome/browser/sync/test/integration/sync_integration_test_util.h" | 6 #include "chrome/browser/sync/test/integration/sync_integration_test_util.h" |
| 8 #include "chrome/browser/sync/test/integration/sync_test.h" | 7 #include "chrome/browser/sync/test/integration/sync_test.h" |
| 9 #include "chrome/common/pref_names.h" | 8 #include "chrome/common/pref_names.h" |
| 9 #include "components/browser_sync/browser/profile_sync_service.h" |
| 10 | 10 |
| 11 using preferences_helper::BooleanPrefMatches; | 11 using preferences_helper::BooleanPrefMatches; |
| 12 using preferences_helper::ChangeBooleanPref; | 12 using preferences_helper::ChangeBooleanPref; |
| 13 using sync_integration_test_util::AwaitCommitActivityCompletion; | 13 using sync_integration_test_util::AwaitCommitActivityCompletion; |
| 14 | 14 |
| 15 class SingleClientPreferencesSyncTest : public SyncTest { | 15 class SingleClientPreferencesSyncTest : public SyncTest { |
| 16 public: | 16 public: |
| 17 SingleClientPreferencesSyncTest() : SyncTest(SINGLE_CLIENT) {} | 17 SingleClientPreferencesSyncTest() : SyncTest(SINGLE_CLIENT) {} |
| 18 ~SingleClientPreferencesSyncTest() override {} | 18 ~SingleClientPreferencesSyncTest() override {} |
| 19 | 19 |
| 20 private: | 20 private: |
| 21 DISALLOW_COPY_AND_ASSIGN(SingleClientPreferencesSyncTest); | 21 DISALLOW_COPY_AND_ASSIGN(SingleClientPreferencesSyncTest); |
| 22 }; | 22 }; |
| 23 | 23 |
| 24 IN_PROC_BROWSER_TEST_F(SingleClientPreferencesSyncTest, Sanity) { | 24 IN_PROC_BROWSER_TEST_F(SingleClientPreferencesSyncTest, Sanity) { |
| 25 ASSERT_TRUE(SetupSync()) << "SetupSync() failed."; | 25 ASSERT_TRUE(SetupSync()) << "SetupSync() failed."; |
| 26 ASSERT_TRUE(BooleanPrefMatches(prefs::kHomePageIsNewTabPage)); | 26 ASSERT_TRUE(BooleanPrefMatches(prefs::kHomePageIsNewTabPage)); |
| 27 ChangeBooleanPref(0, prefs::kHomePageIsNewTabPage); | 27 ChangeBooleanPref(0, prefs::kHomePageIsNewTabPage); |
| 28 ASSERT_TRUE(AwaitCommitActivityCompletion(GetSyncService((0)))); | 28 ASSERT_TRUE(AwaitCommitActivityCompletion(GetSyncService((0)))); |
| 29 ASSERT_TRUE(BooleanPrefMatches(prefs::kHomePageIsNewTabPage)); | 29 ASSERT_TRUE(BooleanPrefMatches(prefs::kHomePageIsNewTabPage)); |
| 30 } | 30 } |
| OLD | NEW |