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