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

Side by Side Diff: components/sync/engine/cycle/sync_cycle_snapshot_unittest.cc

Issue 2460703005: [Sync] IWYU cleanup. (Closed)
Patch Set: Created 4 years, 1 month 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) 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/engine/cycle/sync_cycle_snapshot.h" 5 #include "components/sync/engine/cycle/sync_cycle_snapshot.h"
6 6
7 #include <memory>
8
9 #include "base/test/values_test_util.h" 7 #include "base/test/values_test_util.h"
10 #include "base/values.h" 8 #include "base/values.h"
11 #include "testing/gtest/include/gtest/gtest.h" 9 #include "testing/gtest/include/gtest/gtest.h"
12 10
13 namespace syncer { 11 namespace syncer {
14 namespace { 12 namespace {
15 13
16 using base::ExpectDictBooleanValue; 14 using base::ExpectDictBooleanValue;
17 using base::ExpectDictDictionaryValue; 15 using base::ExpectDictDictionaryValue;
18 using base::ExpectDictIntegerValue; 16 using base::ExpectDictIntegerValue;
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 ExpectDictIntegerValue(kNumEncryptionConflicts, *value, 70 ExpectDictIntegerValue(kNumEncryptionConflicts, *value,
73 "numEncryptionConflicts"); 71 "numEncryptionConflicts");
74 ExpectDictIntegerValue(kNumHierarchyConflicts, *value, 72 ExpectDictIntegerValue(kNumHierarchyConflicts, *value,
75 "numHierarchyConflicts"); 73 "numHierarchyConflicts");
76 ExpectDictIntegerValue(kNumServerConflicts, *value, "numServerConflicts"); 74 ExpectDictIntegerValue(kNumServerConflicts, *value, "numServerConflicts");
77 ExpectDictBooleanValue(false, *value, "notificationsEnabled"); 75 ExpectDictBooleanValue(false, *value, "notificationsEnabled");
78 } 76 }
79 77
80 } // namespace 78 } // namespace
81 } // namespace syncer 79 } // namespace syncer
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698