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

Side by Side Diff: components/sync/syncable/entry_kernel.cc

Issue 2387553002: [Sync] Removing duplicated includes between cc and h files. (Closed)
Patch Set: Fixing DataTypeStatusTable Created 4 years, 2 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) 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/syncable/entry_kernel.h" 5 #include "components/sync/syncable/entry_kernel.h"
6 6
7 #include <stdint.h>
8
9 #include <utility> 7 #include <utility>
10 8
11 #include "base/json/string_escape.h" 9 #include "base/json/string_escape.h"
12 #include "base/strings/string_number_conversions.h" 10 #include "base/strings/string_number_conversions.h"
13 #include "components/sync/base/cryptographer.h" 11 #include "components/sync/base/cryptographer.h"
14 #include "components/sync/protocol/proto_value_conversions.h" 12 #include "components/sync/protocol/proto_value_conversions.h"
15 #include "components/sync/syncable/syncable_columns.h" 13 #include "components/sync/syncable/syncable_columns.h"
16 #include "components/sync/syncable/syncable_enum_conversions.h" 14 #include "components/sync/syncable/syncable_enum_conversions.h"
17 15
18 namespace syncer { 16 namespace syncer {
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 os << "TempFlags: "; 273 os << "TempFlags: ";
276 for (; i < BIT_TEMPS_END; ++i) { 274 for (; i < BIT_TEMPS_END; ++i) {
277 if (kernel->ref(static_cast<BitTemp>(i))) 275 if (kernel->ref(static_cast<BitTemp>(i)))
278 os << "#" << i - BIT_TEMPS_BEGIN << ", "; 276 os << "#" << i - BIT_TEMPS_BEGIN << ", ";
279 } 277 }
280 return os; 278 return os;
281 } 279 }
282 280
283 } // namespace syncable 281 } // namespace syncable
284 } // namespace syncer 282 } // namespace syncer
OLDNEW
« no previous file with comments | « components/sync/syncable/entry.cc ('k') | components/sync/syncable/model_neutral_mutable_entry.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698