Searched refs:history_service (Results 1 - 25 of 48) sorted by last modified time

12

/external/chromium_org/chrome/test/base/
H A Dtesting_profile.cc30 #include "chrome/browser/history/history_service.h"
486 HistoryService* history_service = static_cast<HistoryService*>( local
489 if (!history_service->Init(this->GetPath(), no_db)) {
498 HistoryService* history_service = local
500 if (!history_service)
503 history_service->ClearCachedDataForContextID(0);
504 history_service->SetOnBackendDestroyTask(base::MessageLoop::QuitClosure());
505 history_service->Cleanup();
593 HistoryService* history_service = local
595 DCHECK(history_service);
886 HistoryService* history_service = local
[all...]
H A Dui_test_utils.cc367 void WaitForHistoryToLoad(HistoryService* history_service) { argument
371 if (!history_service->BackendLoaded())
H A Dui_test_utils.h17 #include "chrome/browser/history/history_service.h"
146 // Blocks until the |history_service|'s history finishes loading.
147 void WaitForHistoryToLoad(HistoryService* history_service);
/external/chromium_org/chrome/browser/predictors/
H A Dautocomplete_action_predictor.cc20 #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)) {
H A Dautocomplete_action_predictor_unittest.cc15 #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();
H A Dresource_prefetch_predictor.cc21 #include "chrome/browser/history/history_service.h"
557 HistoryService* history_service = HistoryServiceFactory::GetForProfile( local
559 DCHECK(history_service);
560 history_service->ScheduleDBTask(
696 HistoryService* history_service = HistoryServiceFactory::GetForProfile( local
698 if (!history_service) {
/external/chromium_org/chrome/browser/prerender/
H A Dprerender_manager.cc1357 HistoryService* history_service = HistoryServiceFactory::GetForProfile( local
1359 if (history_service) {
1360 history_service->QueryURL(
/external/chromium_org/chrome/browser/safe_browsing/
H A Dbrowser_feature_extractor_unittest.cc16 #include "chrome/browser/history/history_service.h"
105 HistoryService* history_service() { function in class:safe_browsing::BrowserFeatureExtractorTest
257 history_service()->AddPage(GURL("http://www.foo.com/bar.html"),
260 history_service()->AddPage(GURL("https://www.foo.com/gaa.html"),
263 history_service()->AddPage(GURL("http://www.foo.com/gaa.html"),
266 history_service()->AddPage(GURL("http://bar.foo.com/gaa.html"),
269 history_service()->AddPage(GURL("http://www.foo.com/bar.html?a=b"),
274 history_service()->AddPage(GURL("http://www.foo.com/bar.html"),
279 history_service()->AddPage(GURL("https://www.foo.com/goo.html"),
326 history_service()
[all...]
H A Dmalware_details_unittest.cc12 #include "chrome/browser/history/history_service.h"
218 HistoryService* history_service() { function in class:MalwareDetailsTest
313 history_service()->AddPage(
H A Dsafe_browsing_blocking_page.cc195 HistoryService* history_service = HistoryServiceFactory::GetForProfile( local
198 if (history_service) {
199 history_service->GetVisibleVisitCountToHost(
/external/chromium_org/chrome/browser/safe_browsing/incident_reporting/
H A Dlast_download_finder.cc16 #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(
171 OnProfileHistoryLoaded( Profile* profile, HistoryService* history_service) argument
H A Dlast_download_finder.h71 HistoryService* history_service);
H A Dlast_download_finder_unittest.cc19 #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(
/external/chromium_org/chrome/browser/search_engines/
H A Dchrome_template_url_service_client.cc9 #include "chrome/browser/history/history_service.h"
42 HistoryService* history_service = local
44 if (history_service)
45 history_service->DeleteAllSearchTermsForKeyword(id);
52 HistoryService* history_service = local
54 if (history_service)
55 history_service->SetKeywordSearchTermsForURL(url, id, term);
59 HistoryService* history_service = local
61 if (history_service)
62 history_service
[all...]
/external/chromium_org/chrome/browser/ssl/
H A Dssl_blocking_page.cc336 HistoryService* history_service = HistoryServiceFactory::GetForProfile( local
338 if (history_service) {
339 history_service->GetVisibleVisitCountToHost(
/external/chromium_org/chrome/browser/supervised_user/
H A Dsupervised_user_browsertest.cc132 void QueryHistory(HistoryService* history_service, argument
138 history_service->QueryHistory(
271 HistoryService* history_service = HistoryServiceFactory::GetForProfile( local
275 QueryHistory(history_service, "", options, &results);
H A Dsupervised_user_navigation_observer.cc11 #include "chrome/browser/history/history_service.h"
238 HistoryService* history_service = local
241 // |history_service| is null if saving history is disabled.
242 if (history_service)
243 history_service->AddPage(add_page_args);
/external/chromium_org/chrome/browser/sync/glue/
H A Dhistory_model_worker.cc65 // Post the work task on |history_service|'s DB thread from the UI
67 void PostWorkerTask(const base::WeakPtr<HistoryService>& history_service, argument
73 if (history_service.get()) {
75 history_service->ScheduleDBTask(task.Pass(), cancelable_tracker);
85 const base::WeakPtr<HistoryService>& history_service,
88 history_service_(history_service) {
89 CHECK(history_service.get());
84 HistoryModelWorker( const base::WeakPtr<HistoryService>& history_service, syncer::WorkerLoopDestructionObserver* observer) argument
H A Dhistory_model_worker.h17 #include "chrome/browser/history/history_service.h"
28 const base::WeakPtr<HistoryService>& history_service,
H A Dsync_backend_registrar.cc90 HistoryService* history_service = local
92 if (history_service) {
94 new HistoryModelWorker(history_service->AsWeakPtr(), this);
/external/chromium_org/chrome/browser/sync/sessions/
H A Dnotification_service_sessions_router.cc10 #include "chrome/browser/history/history_service.h"
57 HistoryService* history_service = local
59 if (history_service) {
60 favicon_changed_subscription_ = history_service->AddFaviconChangedCallback(
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dbookmarks_helper.cc271 HistoryService* history_service = local
275 history_service->ScheduleDBTask(
/external/chromium_org/chrome/browser/ui/omnibox/
H A Dalternate_nav_infobar_delegate.cc10 #include "chrome/browser/history/history_service.h"
78 HistoryService* const history_service = local
80 if (history_service)
81 history_service->DeleteKeywordSearchTermForURL(search_url_);
H A Domnibox_view_browsertest.cc16 #include "chrome/browser/history/history_service.h"
280 HistoryService* history_service = HistoryServiceFactory::GetForProfile( local
282 ASSERT_TRUE(history_service);
284 if (!history_service->BackendLoaded()) {
299 history_service->AddPageWithDetails(url, base::UTF8ToUTF16(entry.title),
/external/chromium_org/chrome/browser/ui/website_settings/
H A Dwebsite_settings.cc188 HistoryService* history_service = HistoryServiceFactory::GetForProfile( local
190 if (history_service) {
191 history_service->GetVisibleVisitCountToHost(

Completed in 2084 milliseconds

12