| 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 "base/file_path.h" | 10 #include "base/file_path.h" |
| 11 #include "chrome/browser/history/history_types.h" | 11 #include "chrome/browser/history/history_types.h" |
| 12 #include "chrome/browser/history/url_database.h" // For DBCloseScoper. | 12 #include "chrome/browser/history/url_database.h" // For DBCloseScoper. |
| 13 #include "chrome/browser/meta_table_helper.h" | 13 #include "chrome/browser/meta_table_helper.h" |
| 14 #include "chrome/common/sqlite_compiled_statement.h" | 14 #include "chrome/common/sqlite_compiled_statement.h" |
| 15 #include "skia/include/SkBitmap.h" | 15 #include "third_party/skia/include/core/SkBitmap.h" |
| 16 | 16 |
| 17 struct sqlite3; | 17 struct sqlite3; |
| 18 struct ThumbnailScore; | 18 struct ThumbnailScore; |
| 19 namespace base { | 19 namespace base { |
| 20 class Time; | 20 class Time; |
| 21 } | 21 } |
| 22 | 22 |
| 23 namespace history { | 23 namespace history { |
| 24 | 24 |
| 25 class ExpireHistoryBackend; | 25 class ExpireHistoryBackend; |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 // This object is created and managed by the history backend. We maintain an | 169 // This object is created and managed by the history backend. We maintain an |
| 170 // opaque pointer to the object for our use. | 170 // opaque pointer to the object for our use. |
| 171 // This can be NULL if there are no indexers registered to receive indexing | 171 // This can be NULL if there are no indexers registered to receive indexing |
| 172 // data from us. | 172 // data from us. |
| 173 const HistoryPublisher* history_publisher_; | 173 const HistoryPublisher* history_publisher_; |
| 174 }; | 174 }; |
| 175 | 175 |
| 176 } // namespace history | 176 } // namespace history |
| 177 | 177 |
| 178 #endif // CHROME_BROWSER_HISTORY_THUMBNAIL_DATABASE_H_ | 178 #endif // CHROME_BROWSER_HISTORY_THUMBNAIL_DATABASE_H_ |
| OLD | NEW |