| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "app/sql/connection.h" | |
| 12 #include "app/sql/init_status.h" | |
| 13 #include "app/sql/meta_table.h" | |
| 14 #include "base/gtest_prod_util.h" | 11 #include "base/gtest_prod_util.h" |
| 15 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 16 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 17 #include "chrome/browser/history/history_types.h" | 14 #include "chrome/browser/history/history_types.h" |
| 15 #include "sql/connection.h" |
| 16 #include "sql/init_status.h" |
| 17 #include "sql/meta_table.h" |
| 18 | 18 |
| 19 class FilePath; | 19 class FilePath; |
| 20 class RefCountedMemory; | 20 class RefCountedMemory; |
| 21 struct ThumbnailScore; | 21 struct ThumbnailScore; |
| 22 class SkBitmap; | 22 class SkBitmap; |
| 23 | 23 |
| 24 namespace base { | 24 namespace base { |
| 25 class Time; | 25 class Time; |
| 26 } | 26 } |
| 27 | 27 |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 280 const HistoryPublisher* history_publisher_; | 280 const HistoryPublisher* history_publisher_; |
| 281 | 281 |
| 282 // True if migration to TopSites has been done and the thumbnails | 282 // True if migration to TopSites has been done and the thumbnails |
| 283 // table should not be used. | 283 // table should not be used. |
| 284 bool use_top_sites_; | 284 bool use_top_sites_; |
| 285 }; | 285 }; |
| 286 | 286 |
| 287 } // namespace history | 287 } // namespace history |
| 288 | 288 |
| 289 #endif // CHROME_BROWSER_HISTORY_THUMBNAIL_DATABASE_H_ | 289 #endif // CHROME_BROWSER_HISTORY_THUMBNAIL_DATABASE_H_ |
| OLD | NEW |