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

Side by Side Diff: chrome/browser/sync/test/integration/single_client_preferences_sync_test.cc

Issue 1545223002: Switch to standard integer types in chrome/browser/, part 4 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 4 years, 12 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 unified diff | Download patch
OLDNEW
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 "chrome/browser/sync/test/integration/preferences_helper.h" 6 #include "chrome/browser/sync/test/integration/preferences_helper.h"
6 #include "chrome/browser/sync/test/integration/sync_integration_test_util.h" 7 #include "chrome/browser/sync/test/integration/sync_integration_test_util.h"
7 #include "chrome/browser/sync/test/integration/sync_test.h" 8 #include "chrome/browser/sync/test/integration/sync_test.h"
8 #include "chrome/common/pref_names.h" 9 #include "chrome/common/pref_names.h"
9 #include "components/browser_sync/browser/profile_sync_service.h" 10 #include "components/browser_sync/browser/profile_sync_service.h"
10 11
11 using preferences_helper::BooleanPrefMatches; 12 using preferences_helper::BooleanPrefMatches;
12 using preferences_helper::ChangeBooleanPref; 13 using preferences_helper::ChangeBooleanPref;
13 using sync_integration_test_util::AwaitCommitActivityCompletion; 14 using sync_integration_test_util::AwaitCommitActivityCompletion;
14 15
15 class SingleClientPreferencesSyncTest : public SyncTest { 16 class SingleClientPreferencesSyncTest : public SyncTest {
16 public: 17 public:
17 SingleClientPreferencesSyncTest() : SyncTest(SINGLE_CLIENT) {} 18 SingleClientPreferencesSyncTest() : SyncTest(SINGLE_CLIENT) {}
18 ~SingleClientPreferencesSyncTest() override {} 19 ~SingleClientPreferencesSyncTest() override {}
19 20
20 private: 21 private:
21 DISALLOW_COPY_AND_ASSIGN(SingleClientPreferencesSyncTest); 22 DISALLOW_COPY_AND_ASSIGN(SingleClientPreferencesSyncTest);
22 }; 23 };
23 24
24 IN_PROC_BROWSER_TEST_F(SingleClientPreferencesSyncTest, Sanity) { 25 IN_PROC_BROWSER_TEST_F(SingleClientPreferencesSyncTest, Sanity) {
25 ASSERT_TRUE(SetupSync()) << "SetupSync() failed."; 26 ASSERT_TRUE(SetupSync()) << "SetupSync() failed.";
26 ASSERT_TRUE(BooleanPrefMatches(prefs::kHomePageIsNewTabPage)); 27 ASSERT_TRUE(BooleanPrefMatches(prefs::kHomePageIsNewTabPage));
27 ChangeBooleanPref(0, prefs::kHomePageIsNewTabPage); 28 ChangeBooleanPref(0, prefs::kHomePageIsNewTabPage);
28 ASSERT_TRUE(AwaitCommitActivityCompletion(GetSyncService((0)))); 29 ASSERT_TRUE(AwaitCommitActivityCompletion(GetSyncService((0))));
29 ASSERT_TRUE(BooleanPrefMatches(prefs::kHomePageIsNewTabPage)); 30 ASSERT_TRUE(BooleanPrefMatches(prefs::kHomePageIsNewTabPage));
30 } 31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698