| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |