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

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

Issue 18031009: Use a direct include of time headers in rlz/, skia/, sql/, sync/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 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/sessions/sync_session.h ('k') | sync/syncable/entry_kernel.h » ('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/directory_backing_store.h" 5 #include "sync/syncable/directory_backing_store.h"
6 6
7 #include "build/build_config.h" 7 #include "build/build_config.h"
8 8
9 #include <limits> 9 #include <limits>
10 10
11 #include "base/base64.h" 11 #include "base/base64.h"
12 #include "base/debug/trace_event.h" 12 #include "base/debug/trace_event.h"
13 #include "base/logging.h" 13 #include "base/logging.h"
14 #include "base/rand_util.h" 14 #include "base/rand_util.h"
15 #include "base/strings/stringprintf.h" 15 #include "base/strings/stringprintf.h"
16 #include "base/time.h" 16 #include "base/time/time.h"
17 #include "sql/connection.h" 17 #include "sql/connection.h"
18 #include "sql/statement.h" 18 #include "sql/statement.h"
19 #include "sql/transaction.h" 19 #include "sql/transaction.h"
20 #include "sync/internal_api/public/base/node_ordinal.h" 20 #include "sync/internal_api/public/base/node_ordinal.h"
21 #include "sync/protocol/bookmark_specifics.pb.h" 21 #include "sync/protocol/bookmark_specifics.pb.h"
22 #include "sync/protocol/sync.pb.h" 22 #include "sync/protocol/sync.pb.h"
23 #include "sync/syncable/syncable-inl.h" 23 #include "sync/syncable/syncable-inl.h"
24 #include "sync/syncable/syncable_columns.h" 24 #include "sync/syncable/syncable_columns.h"
25 #include "sync/syncable/syncable_util.h" 25 #include "sync/syncable/syncable_util.h"
26 #include "sync/util/time.h" 26 #include "sync/util/time.h"
(...skipping 1466 matching lines...) Expand 10 before | Expand all | Expand 10 after
1493 } 1493 }
1494 query.append(" ) "); 1494 query.append(" ) ");
1495 values.append(" )"); 1495 values.append(" )");
1496 query.append(values); 1496 query.append(values);
1497 save_statement->Assign(db_->GetUniqueStatement( 1497 save_statement->Assign(db_->GetUniqueStatement(
1498 base::StringPrintf(query.c_str(), "metas").c_str())); 1498 base::StringPrintf(query.c_str(), "metas").c_str()));
1499 } 1499 }
1500 1500
1501 } // namespace syncable 1501 } // namespace syncable
1502 } // namespace syncer 1502 } // namespace syncer
OLDNEW
« no previous file with comments | « sync/sessions/sync_session.h ('k') | sync/syncable/entry_kernel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698