OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // The history system runs on a background thread so that potentially slow | 5 // The history system runs on a background thread so that potentially slow |
6 // database operations don't delay the browser. This backend processing is | 6 // database operations don't delay the browser. This backend processing is |
7 // represented by HistoryBackend. The HistoryService's job is to dispatch to | 7 // represented by HistoryBackend. The HistoryService's job is to dispatch to |
8 // that thread. | 8 // that thread. |
9 // | 9 // |
10 // Main thread History thread | 10 // Main thread History thread |
(...skipping 15 matching lines...) Expand all Loading... |
26 #include "base/memory/ref_counted.h" | 26 #include "base/memory/ref_counted.h" |
27 #include "base/message_loop/message_loop.h" | 27 #include "base/message_loop/message_loop.h" |
28 #include "base/prefs/pref_service.h" | 28 #include "base/prefs/pref_service.h" |
29 #include "base/thread_task_runner_handle.h" | 29 #include "base/thread_task_runner_handle.h" |
30 #include "base/threading/thread.h" | 30 #include "base/threading/thread.h" |
31 #include "base/time/time.h" | 31 #include "base/time/time.h" |
32 #include "chrome/browser/browser_process.h" | 32 #include "chrome/browser/browser_process.h" |
33 #include "chrome/browser/history/history_backend.h" | 33 #include "chrome/browser/history/history_backend.h" |
34 #include "chrome/browser/history/in_memory_history_backend.h" | 34 #include "chrome/browser/history/in_memory_history_backend.h" |
35 #include "chrome/browser/history/in_memory_url_index.h" | 35 #include "chrome/browser/history/in_memory_url_index.h" |
36 #include "chrome/browser/history/web_history_service.h" | |
37 #include "chrome/browser/history/web_history_service_factory.h" | 36 #include "chrome/browser/history/web_history_service_factory.h" |
38 #include "chrome/browser/profiles/profile.h" | 37 #include "chrome/browser/profiles/profile.h" |
39 #include "chrome/common/chrome_constants.h" | 38 #include "chrome/common/chrome_constants.h" |
40 #include "chrome/common/chrome_switches.h" | 39 #include "chrome/common/chrome_switches.h" |
41 #include "chrome/common/importer/imported_favicon_usage.h" | 40 #include "chrome/common/importer/imported_favicon_usage.h" |
42 #include "chrome/common/pref_names.h" | 41 #include "chrome/common/pref_names.h" |
43 #include "chrome/common/url_constants.h" | 42 #include "chrome/common/url_constants.h" |
44 #include "components/dom_distiller/core/url_constants.h" | 43 #include "components/dom_distiller/core/url_constants.h" |
45 #include "components/history/core/browser/download_row.h" | 44 #include "components/history/core/browser/download_row.h" |
46 #include "components/history/core/browser/history_client.h" | 45 #include "components/history/core/browser/history_client.h" |
47 #include "components/history/core/browser/history_database_params.h" | 46 #include "components/history/core/browser/history_database_params.h" |
48 #include "components/history/core/browser/history_service_observer.h" | 47 #include "components/history/core/browser/history_service_observer.h" |
49 #include "components/history/core/browser/history_types.h" | 48 #include "components/history/core/browser/history_types.h" |
50 #include "components/history/core/browser/in_memory_database.h" | 49 #include "components/history/core/browser/in_memory_database.h" |
51 #include "components/history/core/browser/keyword_search_term.h" | 50 #include "components/history/core/browser/keyword_search_term.h" |
52 #include "components/history/core/browser/visit_database.h" | 51 #include "components/history/core/browser/visit_database.h" |
53 #include "components/history/core/browser/visit_filter.h" | 52 #include "components/history/core/browser/visit_filter.h" |
| 53 #include "components/history/core/browser/web_history_service.h" |
54 #include "components/history/core/common/thumbnail_score.h" | 54 #include "components/history/core/common/thumbnail_score.h" |
55 #include "components/visitedlink/browser/visitedlink_master.h" | 55 #include "components/visitedlink/browser/visitedlink_master.h" |
56 #include "content/public/browser/browser_thread.h" | 56 #include "content/public/browser/browser_thread.h" |
57 #include "content/public/browser/download_item.h" | 57 #include "content/public/browser/download_item.h" |
58 #include "sync/api/sync_error_factory.h" | 58 #include "sync/api/sync_error_factory.h" |
59 #include "third_party/skia/include/core/SkBitmap.h" | 59 #include "third_party/skia/include/core/SkBitmap.h" |
60 | 60 |
61 using base::Time; | 61 using base::Time; |
62 using history::HistoryBackend; | 62 using history::HistoryBackend; |
63 using history::KeywordID; | 63 using history::KeywordID; |
(...skipping 1204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1268 const HistoryService::OnFaviconChangedCallback& callback) { | 1268 const HistoryService::OnFaviconChangedCallback& callback) { |
1269 DCHECK(thread_checker_.CalledOnValidThread()); | 1269 DCHECK(thread_checker_.CalledOnValidThread()); |
1270 return favicon_changed_callback_list_.Add(callback); | 1270 return favicon_changed_callback_list_.Add(callback); |
1271 } | 1271 } |
1272 | 1272 |
1273 void HistoryService::NotifyFaviconChanged( | 1273 void HistoryService::NotifyFaviconChanged( |
1274 const std::set<GURL>& changed_favicons) { | 1274 const std::set<GURL>& changed_favicons) { |
1275 DCHECK(thread_checker_.CalledOnValidThread()); | 1275 DCHECK(thread_checker_.CalledOnValidThread()); |
1276 favicon_changed_callback_list_.Notify(changed_favicons); | 1276 favicon_changed_callback_list_.Notify(changed_favicons); |
1277 } | 1277 } |
OLD | NEW |