| 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 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/gtest_prod_util.h" | 11 #include "base/gtest_prod_util.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/memory/scoped_ptr.h" | |
| 14 #include "chrome/browser/history/history_types.h" | 13 #include "chrome/browser/history/history_types.h" |
| 15 #include "sql/connection.h" | 14 #include "sql/connection.h" |
| 16 #include "sql/init_status.h" | 15 #include "sql/init_status.h" |
| 17 #include "sql/meta_table.h" | 16 #include "sql/meta_table.h" |
| 18 #include "sql/statement.h" | 17 #include "sql/statement.h" |
| 19 | 18 |
| 20 class FilePath; | 19 class FilePath; |
| 21 struct ThumbnailScore; | 20 struct ThumbnailScore; |
| 22 class SkBitmap; | 21 class SkBitmap; |
| 23 | 22 |
| (...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 const HistoryPublisher* history_publisher_; | 326 const HistoryPublisher* history_publisher_; |
| 328 | 327 |
| 329 // True if migration to TopSites has been done and the thumbnails | 328 // True if migration to TopSites has been done and the thumbnails |
| 330 // table should not be used. | 329 // table should not be used. |
| 331 bool use_top_sites_; | 330 bool use_top_sites_; |
| 332 }; | 331 }; |
| 333 | 332 |
| 334 } // namespace history | 333 } // namespace history |
| 335 | 334 |
| 336 #endif // CHROME_BROWSER_HISTORY_THUMBNAIL_DATABASE_H_ | 335 #endif // CHROME_BROWSER_HISTORY_THUMBNAIL_DATABASE_H_ |
| OLD | NEW |