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 <stddef.h> |
8 #include <stdint.h> | 9 #include <stdint.h> |
9 #include <map> | 10 #include <map> |
10 #include <set> | 11 #include <set> |
11 #include <string> | 12 #include <string> |
12 #include <vector> | 13 #include <vector> |
13 | 14 |
14 #include "base/callback.h" | 15 #include "base/callback.h" |
15 #include "base/compiler_specific.h" | 16 #include "base/compiler_specific.h" |
16 #include "base/gtest_prod_util.h" | 17 #include "base/gtest_prod_util.h" |
17 #include "base/macros.h" | 18 #include "base/macros.h" |
(...skipping 775 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
793 // Source for timing information, provided to allow tests to inject time | 794 // Source for timing information, provided to allow tests to inject time |
794 // changes. | 795 // changes. |
795 scoped_ptr<TimeSource> clock_; | 796 scoped_ptr<TimeSource> clock_; |
796 | 797 |
797 DISALLOW_COPY_AND_ASSIGN(Connection); | 798 DISALLOW_COPY_AND_ASSIGN(Connection); |
798 }; | 799 }; |
799 | 800 |
800 } // namespace sql | 801 } // namespace sql |
801 | 802 |
802 #endif // SQL_CONNECTION_H_ | 803 #endif // SQL_CONNECTION_H_ |
OLD | NEW |