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

1 2 3

  /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,
  /external/chromium/chrome/browser/sync/glue/
history_model_worker.cc 39 HistoryModelWorker::HistoryModelWorker(HistoryService* history_service)
40 : history_service_(history_service) {
history_model_worker.h 29 explicit HistoryModelWorker(HistoryService* history_service);
  /external/chromium_org/chrome/browser/favicon/
favicon_service_factory.cc 10 #include "chrome/browser/history/history_service.h"
49 HistoryService* history_service = HistoryServiceFactory::GetForProfile( local
51 return new FaviconService(history_service);
  /external/chromium_org/chrome/browser/history/
delete_directive_handler.h 32 void Start(HistoryService* history_service,
56 HistoryService* history_service,
history_service_factory.cc 10 #include "chrome/browser/history/history_service.h"
71 HistoryService* history_service = new HistoryService(profile); local
72 if (!history_service->Init(profile->GetPath(),
76 return history_service;
url_index_private_data.h 15 #include "chrome/browser/history/history_service.h"
82 // |history_service| is used to schedule an update to the recent visits
84 bool UpdateURL(HistoryService* history_service,
95 // Using |history_service| schedules an update (using the historyDB
99 void ScheduleUpdateRecentVisits(HistoryService* history_service,
254 // this function uses |history_service| to schedule a task on the
258 HistoryService* history_service,
  /external/chromium/chrome/browser/
memory_purger.cc 112 HistoryService* history_service = local
114 if (history_service)
115 history_service->UnloadBackend();
custom_home_pages_table_model.cc 84 HistoryService* history_service = local
86 if (history_service)
87 history_service->CancelRequest(entry->title_handle);
156 HistoryService* history_service = local
158 if (history_service) {
159 entry->title_handle = history_service->QueryURL(entry->url, false,
  /external/chromium_org/chrome/browser/
memory_purger.cc 13 #include "chrome/browser/history/history_service.h"
114 HistoryService* history_service = local
116 if (history_service)
117 history_service->UnloadBackend();
custom_home_pages_table_model.cc 163 HistoryService* history_service = HistoryServiceFactory::GetForProfile( local
165 if (history_service)
166 history_service->CancelRequest(entry->title_handle);
224 HistoryService* history_service = HistoryServiceFactory::GetForProfile( local
226 if (history_service) {
227 entry->title_handle = history_service->QueryURL(entry->url, false,
  /external/chromium_org/chrome/test/base/
testing_profile.cc 34 #include "chrome/browser/history/history_service.h"
384 HistoryService* history_service = static_cast<HistoryService*>( local
387 if (!history_service->Init(this->GetPath(),
398 HistoryService* history_service = local
400 if (!history_service)
403 history_service->NotifyRenderProcessHostDestruction(0);
404 history_service->SetOnBackendDestroyTask(base::MessageLoop::QuitClosure());
405 history_service->Cleanup();
458 HistoryService* history_service = local
460 if (history_service) {
480 HistoryService* history_service = local
753 HistoryService* history_service = local
    [all...]
  /external/chromium_org/chrome/browser/safe_browsing/
browser_feature_extractor_unittest.cc 16 #include "chrome/browser/history/history_service.h"
70 HistoryService* history_service() { function in class:safe_browsing::BrowserFeatureExtractorTest
193 history_service()->AddPage(GURL("http://www.foo.com/bar.html"),
196 history_service()->AddPage(GURL("https://www.foo.com/gaa.html"),
199 history_service()->AddPage(GURL("http://www.foo.com/gaa.html"),
202 history_service()->AddPage(GURL("http://bar.foo.com/gaa.html"),
205 history_service()->AddPage(GURL("http://www.foo.com/bar.html?a=b"),
210 history_service()->AddPage(GURL("http://www.foo.com/bar.html"),
215 history_service()->AddPage(GURL("https://www.foo.com/goo.html"),
262 history_service()->AddPage(GURL("http://www.foo.com/bar.html")
    [all...]
  /external/chromium/chrome/browser/autocomplete/
history_provider.cc 30 HistoryService* const history_service = local
35 if (!history_service || !selected_url.is_valid()) {
39 history_service->DeleteURL(selected_url);
history_contents_provider_unittest.cc 64 HistoryService* history_service = local
78 history_service->AddPage(url, t, id_scope, i, GURL(),
81 history_service->SetPageTitle(url, UTF8ToUTF16(test_entries[i].title));
82 history_service->SetPageContents(url, UTF8ToUTF16(test_entries[i].body));
extension_app_provider.cc 159 HistoryService* const history_service = local
161 history::URLDatabase* url_db = history_service ?
162 history_service->InMemoryDatabase() : NULL;
history_quick_provider.cc 184 HistoryService* const history_service = local
186 if (!history_service)
189 return history_service->InMemoryIndex();
  /external/chromium_org/chrome/browser/autocomplete/
history_provider.cc 14 #include "chrome/browser/history/history_service.h"
32 HistoryService* const history_service = local
36 DCHECK(history_service);
38 history_service->DeleteURL(match.destination_url);
history_quick_provider.cc 23 #include "chrome/browser/history/history_service.h"
135 HistoryService* const history_service = local
143 if (history_service) {
144 history::URLDatabase* url_db = history_service->InMemoryDatabase();
310 HistoryService* const history_service = local
312 if (!history_service)
315 return history_service->InMemoryIndex();
extension_app_provider.cc 15 #include "chrome/browser/history/history_service.h"
211 HistoryService* const history_service = local
213 history::URLDatabase* url_db = history_service ?
214 history_service->InMemoryDatabase() : NULL;
  /external/chromium_org/chrome/browser/managed_mode/
managed_mode_browsertest.cc 135 void QueryHistory(HistoryService* history_service,
141 history_service->QueryHistory(
227 HistoryService* history_service = HistoryServiceFactory::GetForProfile( local
231 QueryHistory(history_service, "", options, &results);
managed_mode_navigation_observer.cc 11 #include "chrome/browser/history/history_service.h"
236 HistoryService* history_service = local
239 // |history_service| is null if saving history is disabled.
240 if (history_service)
241 history_service->AddPage(add_page_args);
  /external/chromium_org/chrome/browser/ui/webui/omnibox/
omnibox_ui_handler.cc 21 #include "chrome/browser/history/history_service.h"
161 HistoryService* const history_service = local
164 if (!history_service)
166 history::URLDatabase* url_db = history_service->InMemoryDatabase();
  /external/chromium_org/chrome/test/perf/
generate_profile.cc 19 #include "chrome/browser/history/history_service.h"
127 HistoryService* history_service = local
188 history_service->AddPage(url, base::Time::Now(),
193 history_service->SetPageTitle(url, ConstructRandomTitle());

Completed in 385 milliseconds

1 2 3