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