| 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 COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_DATABASE_H_ | 5 #ifndef COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_DATABASE_H_ |
| 6 #define COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_DATABASE_H_ | 6 #define COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_DATABASE_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include <stddef.h> |
| 9 |
| 9 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 10 #include "base/gtest_prod_util.h" | 11 #include "base/gtest_prod_util.h" |
| 12 #include "base/macros.h" |
| 11 #include "build/build_config.h" | 13 #include "build/build_config.h" |
| 12 #include "components/history/core/browser/download_database.h" | 14 #include "components/history/core/browser/download_database.h" |
| 13 #include "components/history/core/browser/history_types.h" | 15 #include "components/history/core/browser/history_types.h" |
| 14 #include "components/history/core/browser/url_database.h" | 16 #include "components/history/core/browser/url_database.h" |
| 15 #include "components/history/core/browser/visit_database.h" | 17 #include "components/history/core/browser/visit_database.h" |
| 16 #include "components/history/core/browser/visitsegment_database.h" | 18 #include "components/history/core/browser/visitsegment_database.h" |
| 17 #include "sql/connection.h" | 19 #include "sql/connection.h" |
| 18 #include "sql/init_status.h" | 20 #include "sql/init_status.h" |
| 19 #include "sql/meta_table.h" | 21 #include "sql/meta_table.h" |
| 20 | 22 |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 sql::MetaTable meta_table_; | 195 sql::MetaTable meta_table_; |
| 194 | 196 |
| 195 base::Time cached_early_expiration_threshold_; | 197 base::Time cached_early_expiration_threshold_; |
| 196 | 198 |
| 197 DISALLOW_COPY_AND_ASSIGN(HistoryDatabase); | 199 DISALLOW_COPY_AND_ASSIGN(HistoryDatabase); |
| 198 }; | 200 }; |
| 199 | 201 |
| 200 } // namespace history | 202 } // namespace history |
| 201 | 203 |
| 202 #endif // COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_DATABASE_H_ | 204 #endif // COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_DATABASE_H_ |
| OLD | NEW |