| 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_TOP_SITES_DATABASE_H_ | 5 #ifndef CHROME_BROWSER_HISTORY_TOP_SITES_DATABASE_H_ |
| 6 #define CHROME_BROWSER_HISTORY_TOP_SITES_DATABASE_H_ | 6 #define CHROME_BROWSER_HISTORY_TOP_SITES_DATABASE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "app/sql/meta_table.h" | |
| 13 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
| 14 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 15 #include "chrome/browser/history/history_types.h" | 14 #include "chrome/browser/history/history_types.h" |
| 16 #include "chrome/browser/history/url_database.h" // For DBCloseScoper. | 15 #include "chrome/browser/history/url_database.h" // For DBCloseScoper. |
| 16 #include "sql/meta_table.h" |
| 17 | 17 |
| 18 class FilePath; | 18 class FilePath; |
| 19 class RefCountedMemory; | 19 class RefCountedMemory; |
| 20 class SkBitmap; | 20 class SkBitmap; |
| 21 | 21 |
| 22 namespace sql { | 22 namespace sql { |
| 23 class Connection; | 23 class Connection; |
| 24 } | 24 } |
| 25 | 25 |
| 26 namespace history { | 26 namespace history { |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 | 108 |
| 109 // See description above class. | 109 // See description above class. |
| 110 bool may_need_history_migration_; | 110 bool may_need_history_migration_; |
| 111 | 111 |
| 112 DISALLOW_COPY_AND_ASSIGN(TopSitesDatabase); | 112 DISALLOW_COPY_AND_ASSIGN(TopSitesDatabase); |
| 113 }; | 113 }; |
| 114 | 114 |
| 115 } // namespace history | 115 } // namespace history |
| 116 | 116 |
| 117 #endif // CHROME_BROWSER_HISTORY_TOP_SITES_DATABASE_H_ | 117 #endif // CHROME_BROWSER_HISTORY_TOP_SITES_DATABASE_H_ |
| OLD | NEW |