| 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 10 matching lines...) Expand all Loading... |
| 21 #include "base/bind_helpers.h" | 21 #include "base/bind_helpers.h" |
| 22 #include "base/callback.h" | 22 #include "base/callback.h" |
| 23 #include "base/command_line.h" | 23 #include "base/command_line.h" |
| 24 #include "base/compiler_specific.h" | 24 #include "base/compiler_specific.h" |
| 25 #include "base/location.h" | 25 #include "base/location.h" |
| 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/thread_task_runner_handle.h" | 28 #include "base/thread_task_runner_handle.h" |
| 29 #include "base/threading/thread.h" | 29 #include "base/threading/thread.h" |
| 30 #include "base/time/time.h" | 30 #include "base/time/time.h" |
| 31 #include "chrome/browser/autocomplete/in_memory_url_index.h" |
| 31 #include "chrome/browser/history/history_backend.h" | 32 #include "chrome/browser/history/history_backend.h" |
| 32 #include "chrome/browser/history/in_memory_history_backend.h" | 33 #include "chrome/browser/history/in_memory_history_backend.h" |
| 33 #include "chrome/browser/history/in_memory_url_index.h" | |
| 34 #include "chrome/common/url_constants.h" | 34 #include "chrome/common/url_constants.h" |
| 35 #include "components/dom_distiller/core/url_constants.h" | 35 #include "components/dom_distiller/core/url_constants.h" |
| 36 #include "components/history/core/browser/download_row.h" | 36 #include "components/history/core/browser/download_row.h" |
| 37 #include "components/history/core/browser/history_client.h" | 37 #include "components/history/core/browser/history_client.h" |
| 38 #include "components/history/core/browser/history_database_params.h" | 38 #include "components/history/core/browser/history_database_params.h" |
| 39 #include "components/history/core/browser/history_service_observer.h" | 39 #include "components/history/core/browser/history_service_observer.h" |
| 40 #include "components/history/core/browser/history_types.h" | 40 #include "components/history/core/browser/history_types.h" |
| 41 #include "components/history/core/browser/in_memory_database.h" | 41 #include "components/history/core/browser/in_memory_database.h" |
| 42 #include "components/history/core/browser/keyword_search_term.h" | 42 #include "components/history/core/browser/keyword_search_term.h" |
| 43 #include "components/history/core/browser/visit_database.h" | 43 #include "components/history/core/browser/visit_database.h" |
| (...skipping 1195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1239 const HistoryService::OnFaviconChangedCallback& callback) { | 1239 const HistoryService::OnFaviconChangedCallback& callback) { |
| 1240 DCHECK(thread_checker_.CalledOnValidThread()); | 1240 DCHECK(thread_checker_.CalledOnValidThread()); |
| 1241 return favicon_changed_callback_list_.Add(callback); | 1241 return favicon_changed_callback_list_.Add(callback); |
| 1242 } | 1242 } |
| 1243 | 1243 |
| 1244 void HistoryService::NotifyFaviconChanged( | 1244 void HistoryService::NotifyFaviconChanged( |
| 1245 const std::set<GURL>& changed_favicons) { | 1245 const std::set<GURL>& changed_favicons) { |
| 1246 DCHECK(thread_checker_.CalledOnValidThread()); | 1246 DCHECK(thread_checker_.CalledOnValidThread()); |
| 1247 favicon_changed_callback_list_.Notify(changed_favicons); | 1247 favicon_changed_callback_list_.Notify(changed_favicons); |
| 1248 } | 1248 } |
| OLD | NEW |