HomeSort by relevance Sort by last modified time
    Searched refs:history_service (Results 1 - 25 of 46) sorted by null

1 2

  /external/chromium_org/chrome/browser/sync/glue/
history_model_worker.cc 65 // Post the work task on |history_service|'s DB thread from the UI
67 void PostWorkerTask(const base::WeakPtr<HistoryService>& history_service,
73 if (history_service.get()) {
75 history_service->ScheduleDBTask(task.get(), cancelable_consumer);
85 const base::WeakPtr<HistoryService>& history_service,
88 history_service_(history_service) {
89 CHECK(history_service.get());
history_model_worker.h 17 #include "chrome/browser/history/history_service.h"
28 const base::WeakPtr<HistoryService>& history_service,
sync_backend_registrar.cc 88 HistoryService* history_service = local
90 if (history_service) {
92 new HistoryModelWorker(history_service->AsWeakPtr(), this);
  /external/chromium_org/chrome/browser/history/
delete_directive_handler.h 32 void Start(HistoryService* history_service,
56 HistoryService* history_service,
history_service_factory.cc 11 #include "chrome/browser/history/history_service.h"
72 HistoryService* history_service = new HistoryService( local
74 if (!history_service->Init(profile->GetPath())) {
77 return history_service;
url_index_private_data.h 15 #include "chrome/browser/history/history_service.h"
84 // |history_service| is used to schedule an update to the recent visits
86 bool UpdateURL(HistoryService* history_service,
97 // Using |history_service| schedules an update (using the historyDB
101 void ScheduleUpdateRecentVisits(HistoryService* history_service,
257 // this function uses |history_service| to schedule a task on the
261 HistoryService* history_service,
delete_directive_handler.cc 13 #include "chrome/browser/history/history_service.h"
294 HistoryService* history_service,
301 history_service->ScheduleDBTask(
380 HistoryService* history_service,
411 history_service->ScheduleDBTask(
  /external/chromium_org/chrome/browser/ui/omnibox/
alternate_nav_infobar_delegate.cc 10 #include "chrome/browser/history/history_service.h"
78 HistoryService* const history_service = local
80 if (history_service)
81 history_service->DeleteKeywordSearchTermForURL(search_url_);
  /external/chromium_org/chrome/browser/safe_browsing/
last_download_finder_unittest.cc 19 #include "chrome/browser/history/history_service.h"
52 HistoryService* history_service = new HistoryService( local
54 if (history_service->Init(profile->GetPath()))
55 return history_service;
58 delete history_service;
75 HistoryService* history_service = local
77 history_service->CreateDownload(
159 HistoryService* history_service = local
161 history_service->CreateDownload(
last_download_finder.cc 16 #include "chrome/browser/history/history_service.h"
156 HistoryService* history_service = local
159 if (!history_service)
163 if (history_service->BackendLoaded()) {
164 history_service->QueryDownloads(
173 HistoryService* history_service) {
176 history_service->QueryDownloads(
last_download_finder.h 71 HistoryService* history_service);
browser_feature_extractor_unittest.cc 16 #include "chrome/browser/history/history_service.h"
104 HistoryService* history_service() { function in class:safe_browsing::BrowserFeatureExtractorTest
252 history_service()->AddPage(GURL("http://www.foo.com/bar.html"),
255 history_service()->AddPage(GURL("https://www.foo.com/gaa.html"),
258 history_service()->AddPage(GURL("http://www.foo.com/gaa.html"),
261 history_service()->AddPage(GURL("http://bar.foo.com/gaa.html"),
264 history_service()->AddPage(GURL("http://www.foo.com/bar.html?a=b"),
269 history_service()->AddPage(GURL("http://www.foo.com/bar.html"),
274 history_service()->AddPage(GURL("https://www.foo.com/goo.html"),
321 history_service()->AddPage(GURL("http://www.foo.com/bar.html")
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
history_provider.cc 14 #include "chrome/browser/history/history_service.h"
26 HistoryService* const history_service = local
32 DCHECK(history_service);
34 history_service->DeleteURL(match.destination_url);
history_quick_provider.cc 23 #include "chrome/browser/history/history_service.h"
121 HistoryService* const history_service = local
129 if (history_service) {
130 history::URLDatabase* url_db = history_service->InMemoryDatabase();
294 HistoryService* const history_service = local
296 if (!history_service)
299 return history_service->InMemoryIndex();
extension_app_provider.cc 16 #include "chrome/browser/history/history_service.h"
217 HistoryService* const history_service = local
219 history::URLDatabase* url_db = history_service ?
220 history_service->InMemoryDatabase() : NULL;
shortcuts_provider.cc 28 #include "chrome/browser/history/history_service.h"
116 HistoryService* const history_service = local
118 DCHECK(history_service);
119 history_service->DeleteURL(url);
  /external/chromium_org/chrome/browser/bookmarks/
chrome_bookmark_client.cc 15 #include "chrome/browser/history/history_service.h"
37 HistoryService* history_service = local
39 if (history_service)
40 history_service->URLsNoLongerBookmarked(removed_urls);
126 HistoryService* history_service = local
129 history_service ? history_service->InMemoryDatabase() : NULL;
  /external/chromium_org/chrome/browser/supervised_user/
supervised_user_browsertest.cc 135 void QueryHistory(HistoryService* history_service,
141 history_service->QueryHistory(
272 HistoryService* history_service = HistoryServiceFactory::GetForProfile( local
276 QueryHistory(history_service, "", options, &results);
supervised_user_navigation_observer.cc 11 #include "chrome/browser/history/history_service.h"
251 HistoryService* history_service = local
254 // |history_service| is null if saving history is disabled.
255 if (history_service)
256 history_service->AddPage(add_page_args);
  /external/chromium_org/chrome/test/base/
testing_profile.cc 34 #include "chrome/browser/history/history_service.h"
456 HistoryService* history_service = static_cast<HistoryService*>( local
459 if (!history_service->Init(this->GetPath(), no_db)) {
468 HistoryService* history_service = local
470 if (!history_service)
473 history_service->ClearCachedDataForContextID(0);
474 history_service->SetOnBackendDestroyTask(base::MessageLoop::QuitClosure());
475 history_service->Cleanup();
561 HistoryService* history_service = local
563 DCHECK(history_service);
850 HistoryService* history_service = local
    [all...]
  /external/chromium_org/chrome/browser/
custom_home_pages_table_model.cc 12 #include "chrome/browser/history/history_service.h"
224 HistoryService* history_service = HistoryServiceFactory::GetForProfile( local
226 if (history_service) {
227 entry->task_id = history_service->QueryURL(
  /external/chromium_org/chrome/browser/ui/webui/omnibox/
omnibox_ui_handler.cc 20 #include "chrome/browser/history/history_service.h"
147 HistoryService* const history_service = local
150 if (!history_service)
152 history::URLDatabase* url_db = history_service->InMemoryDatabase();
  /external/chromium_org/chrome/browser/importer/
profile_writer_unittest.cc 12 #include "chrome/browser/history/history_service.h"
94 HistoryService* history_service = local
99 history_service->QueryHistory(
  /external/chromium_org/chrome/browser/predictors/
autocomplete_action_predictor.cc 22 #include "chrome/browser/history/history_service.h"
83 HistoryService* history_service = HistoryServiceFactory::GetForProfile( local
85 if (history_service)
86 history_service->InMemoryDatabase();
479 HistoryService* history_service = local
481 if (!TryDeleteOldEntries(history_service)) {
autocomplete_action_predictor_unittest.cc 16 #include "chrome/browser/history/history_service.h"
192 HistoryService* history_service = local
195 ASSERT_TRUE(history_service);
197 history::URLDatabase* url_db = history_service->InMemoryDatabase();

Completed in 667 milliseconds

1 2