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

Side by Side Diff: sql/connection.h

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
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 #ifndef SQL_CONNECTION_H_ 5 #ifndef SQL_CONNECTION_H_
6 #define SQL_CONNECTION_H_ 6 #define SQL_CONNECTION_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/basictypes.h" 13 #include "base/basictypes.h"
14 #include "base/callback.h" 14 #include "base/callback.h"
15 #include "base/compiler_specific.h" 15 #include "base/compiler_specific.h"
16 #include "base/memory/ref_counted.h" 16 #include "base/memory/ref_counted.h"
17 #include "base/memory/scoped_ptr.h" 17 #include "base/memory/scoped_ptr.h"
18 #include "base/threading/thread_restrictions.h" 18 #include "base/threading/thread_restrictions.h"
19 #include "base/time.h" 19 #include "base/time/time.h"
20 #include "sql/sql_export.h" 20 #include "sql/sql_export.h"
21 21
22 struct sqlite3; 22 struct sqlite3;
23 struct sqlite3_stmt; 23 struct sqlite3_stmt;
24 24
25 namespace base { 25 namespace base {
26 class FilePath; 26 class FilePath;
27 } 27 }
28 28
29 namespace sql { 29 namespace sql {
(...skipping 483 matching lines...) Expand 10 before | Expand all | Expand 10 after
513 513
514 // Tag for auxiliary histograms. 514 // Tag for auxiliary histograms.
515 std::string histogram_tag_; 515 std::string histogram_tag_;
516 516
517 DISALLOW_COPY_AND_ASSIGN(Connection); 517 DISALLOW_COPY_AND_ASSIGN(Connection);
518 }; 518 };
519 519
520 } // namespace sql 520 } // namespace sql
521 521
522 #endif // SQL_CONNECTION_H_ 522 #endif // SQL_CONNECTION_H_
OLDNEW
« no previous file with comments | « skia/ext/recursive_gaussian_convolution_unittest.cc ('k') | sync/engine/backoff_delay_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698