OLD | NEW |
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 CHROME_BROWSER_HISTORY_THUMBNAIL_DATABASE_H__ | 5 #ifndef CHROME_BROWSER_HISTORY_THUMBNAIL_DATABASE_H__ |
6 #define CHROME_BROWSER_HISTORY_THUMBNAIL_DATABASE_H__ | 6 #define CHROME_BROWSER_HISTORY_THUMBNAIL_DATABASE_H__ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "chrome/browser/history/history_database.h" | |
11 #include "chrome/browser/history/history_types.h" | 10 #include "chrome/browser/history/history_types.h" |
12 #include "chrome/browser/history/url_database.h" // For DBCloseScoper. | 11 #include "chrome/browser/history/url_database.h" // For DBCloseScoper. |
| 12 #include "chrome/browser/meta_table_helper.h" |
13 #include "chrome/common/sqlite_compiled_statement.h" | 13 #include "chrome/common/sqlite_compiled_statement.h" |
| 14 #include "skia/include/SkBitmap.h" |
14 | 15 |
15 struct sqlite3; | 16 struct sqlite3; |
16 struct ThumbnailScore; | 17 struct ThumbnailScore; |
17 class Time; | 18 class Time; |
18 | 19 |
19 namespace history { | 20 namespace history { |
20 | 21 |
21 class ExpireHistoryBackend; | 22 class ExpireHistoryBackend; |
22 | 23 |
23 // This database interface is owned by the history backend and runs on the | 24 // This database interface is owned by the history backend and runs on the |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
156 | 157 |
157 int transaction_nesting_; | 158 int transaction_nesting_; |
158 | 159 |
159 MetaTableHelper meta_table_; | 160 MetaTableHelper meta_table_; |
160 }; | 161 }; |
161 | 162 |
162 } // namespace history | 163 } // namespace history |
163 | 164 |
164 #endif // CHROME_BROWSER_HISTORY_THUMBNAIL_DATABASE_H__ | 165 #endif // CHROME_BROWSER_HISTORY_THUMBNAIL_DATABASE_H__ |
165 | 166 |
OLD | NEW |