| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "app/sql/connection.h" | 10 #include "app/sql/connection.h" |
| 11 #include "app/sql/init_status.h" | 11 #include "app/sql/init_status.h" |
| 12 #include "app/sql/meta_table.h" | 12 #include "app/sql/meta_table.h" |
| 13 #include "base/ref_counted.h" | 13 #include "base/ref_counted.h" |
| 14 #include "chrome/browser/history/history_types.h" | 14 #include "chrome/browser/history/history_types.h" |
| 15 #include "chrome/browser/history/url_database.h" // For DBCloseScoper. | 15 #include "chrome/browser/history/url_database.h" // For DBCloseScoper. |
| 16 #include "chrome/browser/meta_table_helper.h" | |
| 17 | 16 |
| 18 class FilePath; | 17 class FilePath; |
| 19 class RefCountedMemory; | 18 class RefCountedMemory; |
| 20 struct ThumbnailScore; | 19 struct ThumbnailScore; |
| 21 class SkBitmap; | 20 class SkBitmap; |
| 22 | 21 |
| 23 namespace base { | 22 namespace base { |
| 24 class Time; | 23 class Time; |
| 25 } | 24 } |
| 26 | 25 |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 // This object is created and managed by the history backend. We maintain an | 163 // This object is created and managed by the history backend. We maintain an |
| 165 // opaque pointer to the object for our use. | 164 // opaque pointer to the object for our use. |
| 166 // This can be NULL if there are no indexers registered to receive indexing | 165 // This can be NULL if there are no indexers registered to receive indexing |
| 167 // data from us. | 166 // data from us. |
| 168 const HistoryPublisher* history_publisher_; | 167 const HistoryPublisher* history_publisher_; |
| 169 }; | 168 }; |
| 170 | 169 |
| 171 } // namespace history | 170 } // namespace history |
| 172 | 171 |
| 173 #endif // CHROME_BROWSER_HISTORY_THUMBNAIL_DATABASE_H_ | 172 #endif // CHROME_BROWSER_HISTORY_THUMBNAIL_DATABASE_H_ |
| OLD | NEW |