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

Side by Side Diff: sync/syncable/entry.cc

Issue 16358024: Use a direct include of strings headers in rlz/, sandbox/, skia/, sql/, sync/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « sync/syncable/directory_backing_store_unittest.cc ('k') | sync/syncable/entry_kernel.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « sync/syncable/directory_backing_store_unittest.cc ('k') | sync/syncable/entry_kernel.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698