| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_H_ | 5 #ifndef CHROME_BROWSER_HISTORY_TOP_SITES_H_ |
| 6 #define CHROME_BROWSER_HISTORY_TOP_SITES_H_ | 6 #define CHROME_BROWSER_HISTORY_TOP_SITES_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
| 14 #include "base/lock.h" | 14 #include "base/lock.h" |
| 15 #include "base/ref_counted.h" | 15 #include "base/ref_counted.h" |
| 16 #include "base/ref_counted_memory.h" |
| 16 #include "chrome/browser/history/history_types.h" | 17 #include "chrome/browser/history/history_types.h" |
| 17 #include "chrome/common/ref_counted_util.h" | |
| 18 #include "chrome/common/thumbnail_score.h" | 18 #include "chrome/common/thumbnail_score.h" |
| 19 #include "googleurl/src/gurl.h" | 19 #include "googleurl/src/gurl.h" |
| 20 | 20 |
| 21 class SkBitmap; | 21 class SkBitmap; |
| 22 struct ThumbnailScore; | 22 struct ThumbnailScore; |
| 23 | 23 |
| 24 namespace history { | 24 namespace history { |
| 25 | 25 |
| 26 class TopSitesBackend; | 26 class TopSitesBackend; |
| 27 class TopSitesTest; | 27 class TopSitesTest; |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 // TODO(brettw) use the blacklist. | 121 // TODO(brettw) use the blacklist. |
| 122 //std::set<GURL> blacklist_; | 122 //std::set<GURL> blacklist_; |
| 123 | 123 |
| 124 DISALLOW_COPY_AND_ASSIGN(TopSites); | 124 DISALLOW_COPY_AND_ASSIGN(TopSites); |
| 125 }; | 125 }; |
| 126 | 126 |
| 127 } // namespace history | 127 } // namespace history |
| 128 | 128 |
| 129 #endif // CHROME_BROWSER_HISTORY_TOP_SITES_H_ | 129 #endif // CHROME_BROWSER_HISTORY_TOP_SITES_H_ |
| 130 | 130 |
| OLD | NEW |