Home | History | Annotate | Download | only in history

Lines Matching defs:HistoryService

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