OLD | NEW |
1 // Copyright (c) 2010 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_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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <list> | 9 #include <list> |
10 #include <set> | 10 #include <set> |
11 #include <string> | 11 #include <string> |
12 #include <utility> | 12 #include <utility> |
13 | 13 |
14 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
15 #include "base/gtest_prod_util.h" | 15 #include "base/gtest_prod_util.h" |
16 #include "base/lock.h" | 16 #include "base/lock.h" |
17 #include "base/ref_counted.h" | 17 #include "base/ref_counted.h" |
18 #include "base/ref_counted_memory.h" | 18 #include "base/ref_counted_memory.h" |
19 #include "base/time.h" | 19 #include "base/time.h" |
20 #include "base/timer.h" | 20 #include "base/timer.h" |
21 #include "chrome/browser/cancelable_request.h" | 21 #include "chrome/browser/cancelable_request.h" |
22 #include "chrome/browser/history/history_types.h" | 22 #include "chrome/browser/history/history_types.h" |
23 #include "chrome/browser/history/history.h" | 23 #include "chrome/browser/history/history.h" |
24 #include "chrome/browser/history/page_usage_data.h" | 24 #include "chrome/browser/history/page_usage_data.h" |
25 #include "chrome/common/notification_service.h" | |
26 #include "chrome/common/thumbnail_score.h" | 25 #include "chrome/common/thumbnail_score.h" |
27 #include "googleurl/src/gurl.h" | 26 #include "googleurl/src/gurl.h" |
28 | 27 |
29 class DictionaryValue; | 28 class DictionaryValue; |
30 class FilePath; | 29 class FilePath; |
31 class SkBitmap; | 30 class SkBitmap; |
32 class Profile; | 31 class Profile; |
33 | 32 |
34 namespace history { | 33 namespace history { |
35 | 34 |
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
350 | 349 |
351 // Are we loaded? | 350 // Are we loaded? |
352 bool loaded_; | 351 bool loaded_; |
353 | 352 |
354 DISALLOW_COPY_AND_ASSIGN(TopSites); | 353 DISALLOW_COPY_AND_ASSIGN(TopSites); |
355 }; | 354 }; |
356 | 355 |
357 } // namespace history | 356 } // namespace history |
358 | 357 |
359 #endif // CHROME_BROWSER_HISTORY_TOP_SITES_H_ | 358 #endif // CHROME_BROWSER_HISTORY_TOP_SITES_H_ |
OLD | NEW |