OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 #include "chrome/browser/history/top_sites_impl.h" | 5 #include "chrome/browser/history/top_sites_impl.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <set> | 8 #include <set> |
9 | 9 |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
(...skipping 12 matching lines...) Expand all Loading... |
23 #include "chrome/browser/chrome_notification_types.h" | 23 #include "chrome/browser/chrome_notification_types.h" |
24 #include "chrome/browser/history/history_backend.h" | 24 #include "chrome/browser/history/history_backend.h" |
25 #include "chrome/browser/history/history_db_task.h" | 25 #include "chrome/browser/history/history_db_task.h" |
26 #include "chrome/browser/history/history_notifications.h" | 26 #include "chrome/browser/history/history_notifications.h" |
27 #include "chrome/browser/history/history_service_factory.h" | 27 #include "chrome/browser/history/history_service_factory.h" |
28 #include "chrome/browser/history/page_usage_data.h" | 28 #include "chrome/browser/history/page_usage_data.h" |
29 #include "chrome/browser/history/top_sites_cache.h" | 29 #include "chrome/browser/history/top_sites_cache.h" |
30 #include "chrome/browser/history/url_utils.h" | 30 #include "chrome/browser/history/url_utils.h" |
31 #include "chrome/browser/profiles/profile.h" | 31 #include "chrome/browser/profiles/profile.h" |
32 #include "chrome/common/pref_names.h" | 32 #include "chrome/common/pref_names.h" |
33 #include "chrome/common/thumbnail_score.h" | 33 #include "components/history/core/common/thumbnail_score.h" |
34 #include "content/public/browser/browser_thread.h" | 34 #include "content/public/browser/browser_thread.h" |
35 #include "content/public/browser/navigation_controller.h" | 35 #include "content/public/browser/navigation_controller.h" |
36 #include "content/public/browser/navigation_details.h" | 36 #include "content/public/browser/navigation_details.h" |
37 #include "content/public/browser/navigation_entry.h" | 37 #include "content/public/browser/navigation_entry.h" |
38 #include "content/public/browser/notification_service.h" | 38 #include "content/public/browser/notification_service.h" |
39 #include "content/public/browser/web_contents.h" | 39 #include "content/public/browser/web_contents.h" |
40 #include "ui/base/l10n/l10n_util.h" | 40 #include "ui/base/l10n/l10n_util.h" |
41 #include "ui/base/layout.h" | 41 #include "ui/base/layout.h" |
42 #include "ui/base/resource/resource_bundle.h" | 42 #include "ui/base/resource/resource_bundle.h" |
43 #include "ui/gfx/image/image_util.h" | 43 #include "ui/gfx/image/image_util.h" |
(...skipping 885 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
929 base::TimeDelta::FromSeconds(kUpdateIntervalSecs)); | 929 base::TimeDelta::FromSeconds(kUpdateIntervalSecs)); |
930 } | 930 } |
931 | 931 |
932 void TopSitesImpl::OnTopSitesAvailableFromHistory( | 932 void TopSitesImpl::OnTopSitesAvailableFromHistory( |
933 CancelableRequestProvider::Handle handle, | 933 CancelableRequestProvider::Handle handle, |
934 MostVisitedURLList pages) { | 934 MostVisitedURLList pages) { |
935 SetTopSites(pages); | 935 SetTopSites(pages); |
936 } | 936 } |
937 | 937 |
938 } // namespace history | 938 } // namespace history |
OLD | NEW |