OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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 "sync/syncable/entry.h" | 5 #include "sync/syncable/entry.h" |
6 | 6 |
7 #include <iomanip> | 7 #include <iomanip> |
8 | 8 |
9 #include "base/json/string_escape.h" | 9 #include "base/json/string_escape.h" |
10 #include "base/string_util.h" | 10 #include "base/strings/string_util.h" |
11 #include "sync/syncable/blob.h" | 11 #include "sync/syncable/blob.h" |
12 #include "sync/syncable/directory.h" | 12 #include "sync/syncable/directory.h" |
13 #include "sync/syncable/syncable_base_transaction.h" | 13 #include "sync/syncable/syncable_base_transaction.h" |
14 #include "sync/syncable/syncable_columns.h" | 14 #include "sync/syncable/syncable_columns.h" |
15 | 15 |
16 using std::string; | 16 using std::string; |
17 | 17 |
18 namespace syncer { | 18 namespace syncer { |
19 namespace syncable { | 19 namespace syncable { |
20 | 20 |
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 os << "TempFlags: "; | 163 os << "TempFlags: "; |
164 for ( ; i < BIT_TEMPS_END; ++i) { | 164 for ( ; i < BIT_TEMPS_END; ++i) { |
165 if (kernel->ref(static_cast<BitTemp>(i))) | 165 if (kernel->ref(static_cast<BitTemp>(i))) |
166 os << "#" << i - BIT_TEMPS_BEGIN << ", "; | 166 os << "#" << i - BIT_TEMPS_BEGIN << ", "; |
167 } | 167 } |
168 return os; | 168 return os; |
169 } | 169 } |
170 | 170 |
171 } // namespace syncable | 171 } // namespace syncable |
172 } // namespace syncer | 172 } // namespace syncer |
OLD | NEW |