Lines Matching refs:HistoryService
69 class HistoryService::BackendDelegate : public HistoryBackend::Delegate {
71 explicit BackendDelegate(HistoryService* history_service) in BackendDelegate()
79 &HistoryService::NotifyProfileError, init_status)); in NotifyProfileError()
86 &HistoryService::SetInMemoryBackend, backend)); in SetInMemoryBackend()
101 &HistoryService::BroadcastNotifications, type, details)); in BroadcastNotifications()
106 &HistoryService::OnDBLoaded)); in DBLoaded()
111 &HistoryService::StartTopSitesMigration)); in StartTopSitesMigration()
115 scoped_refptr<HistoryService> history_service_;
120 const history::StarID HistoryService::kBookmarkBarID = 1;
125 HistoryService::HistoryService() in HistoryService() function in HistoryService
134 HistoryService::HistoryService(Profile* profile) in HistoryService() function in HistoryService
148 HistoryService::~HistoryService() { in ~HistoryService()
153 bool HistoryService::BackendLoaded() { in BackendLoaded()
165 void HistoryService::UnloadBackend() { in UnloadBackend()
195 void HistoryService::Cleanup() { in Cleanup()
212 void HistoryService::NotifyRenderProcessHostDestruction(const void* host) { in NotifyRenderProcessHostDestruction()
217 history::URLDatabase* HistoryService::InMemoryDatabase() { in InMemoryDatabase()
227 history::InMemoryURLIndex* HistoryService::InMemoryIndex() { in InMemoryIndex()
237 void HistoryService::SetSegmentPresentationIndex(int64 segment_id, int index) { in SetSegmentPresentationIndex()
243 void HistoryService::SetKeywordSearchTermsForURL(const GURL& url, in SetKeywordSearchTermsForURL()
251 void HistoryService::DeleteAllSearchTermsForKeyword( in DeleteAllSearchTermsForKeyword()
258 HistoryService::Handle HistoryService::GetMostRecentKeywordSearchTerms( in GetMostRecentKeywordSearchTerms()
270 void HistoryService::URLsNoLongerBookmarked(const std::set<GURL>& urls) { in URLsNoLongerBookmarked()
275 HistoryService::Handle HistoryService::ScheduleDBTask( in ScheduleDBTask()
285 HistoryService::Handle HistoryService::QuerySegmentUsageSince( in QuerySegmentUsageSince()
295 void HistoryService::SetOnBackendDestroyTask(Task* task) { in SetOnBackendDestroyTask()
300 void HistoryService::AddPage(const GURL& url, in AddPage()
312 void HistoryService::AddPage(const GURL& url, in AddPage()
328 void HistoryService::AddPage(const history::HistoryAddPageArgs& add_page_args) { in AddPage()
360 void HistoryService::AddPageNoVisitForBookmark(const GURL& url) { in AddPageNoVisitForBookmark()
368 void HistoryService::SetPageTitle(const GURL& url, in SetPageTitle()
373 void HistoryService::AddPageWithDetails(const GURL& url, in AddPageWithDetails()
403 void HistoryService::AddPagesWithDetails( in AddPagesWithDetails()
424 void HistoryService::SetPageContents(const GURL& url, in SetPageContents()
433 void HistoryService::SetPageThumbnail(const GURL& page_url, in SetPageThumbnail()
443 HistoryService::Handle HistoryService::GetPageThumbnail( in GetPageThumbnail()
451 void HistoryService::GetFavicon(FaviconService::GetFaviconRequest* request, in GetFavicon()
458 void HistoryService::UpdateFaviconMappingAndFetch( in UpdateFaviconMappingAndFetch()
467 void HistoryService::GetFaviconForURL( in GetFaviconForURL()
475 void HistoryService::SetFavicon(const GURL& page_url, in SetFavicon()
488 void HistoryService::SetFaviconOutOfDateForPage(const GURL& page_url) { in SetFaviconOutOfDateForPage()
493 void HistoryService::SetImportedFavicons( in SetImportedFavicons()
499 void HistoryService::IterateURLs(URLEnumerator* enumerator) { in IterateURLs()
503 HistoryService::Handle HistoryService::QueryURL( in QueryURL()
516 HistoryService::Handle HistoryService::CreateDownload( in CreateDownload()
519 HistoryService::DownloadCreateCallback* callback) { in CreateDownload()
526 HistoryService::Handle HistoryService::QueryDownloads( in QueryDownloads()
536 void HistoryService::CleanUpInProgressEntries() { in CleanUpInProgressEntries()
542 void HistoryService::UpdateDownload(int64 received_bytes, in UpdateDownload()
549 void HistoryService::UpdateDownloadPath(const FilePath& path, in UpdateDownloadPath()
555 void HistoryService::RemoveDownload(int64 db_handle) { in RemoveDownload()
560 void HistoryService::RemoveDownloadsBetween(Time remove_begin, in RemoveDownloadsBetween()
568 HistoryService::Handle HistoryService::QueryHistory( in QueryHistory()
578 HistoryService::Handle HistoryService::QueryRedirectsFrom( in QueryRedirectsFrom()
586 HistoryService::Handle HistoryService::QueryRedirectsTo( in QueryRedirectsTo()
594 HistoryService::Handle HistoryService::GetVisitCountToHost( in GetVisitCountToHost()
602 HistoryService::Handle HistoryService::QueryTopURLsAndRedirects( in QueryTopURLsAndRedirects()
611 HistoryService::Handle HistoryService::QueryMostVisitedURLs( in QueryMostVisitedURLs()
622 void HistoryService::Observe(NotificationType type, in Observe()
661 bool HistoryService::Init(const FilePath& history_dir, in Init()
678 void HistoryService::ScheduleAutocomplete(HistoryURLProvider* provider, in ScheduleAutocomplete()
684 void HistoryService::ScheduleTask(SchedulePriority priority, in ScheduleTask()
691 bool HistoryService::CanAddURL(const GURL& url) { in CanAddURL()
716 void HistoryService::SetInMemoryBackend( in SetInMemoryBackend()
725 void HistoryService::NotifyProfileError(sql::InitStatus init_status) { in NotifyProfileError()
731 void HistoryService::DeleteURL(const GURL& url) { in DeleteURL()
736 void HistoryService::ExpireHistoryBetween( in ExpireHistoryBetween()
748 void HistoryService::BroadcastNotifications( in BroadcastNotifications()
775 void HistoryService::LoadBackendIfNecessary() { in LoadBackendIfNecessary()
794 void HistoryService::OnDBLoaded() { in OnDBLoaded()
798 Details<HistoryService>(this)); in OnDBLoaded()
807 void HistoryService::StartTopSitesMigration() { in StartTopSitesMigration()
817 void HistoryService::OnTopSitesReady() { in OnTopSitesReady()