diff options
Diffstat (limited to 'chrome/browser/history/history_backend.h')
-rw-r--r-- | chrome/browser/history/history_backend.h | 31 |
1 files changed, 2 insertions, 29 deletions
diff --git a/chrome/browser/history/history_backend.h b/chrome/browser/history/history_backend.h index c1136de..f73e653 100644 --- a/chrome/browser/history/history_backend.h +++ b/chrome/browser/history/history_backend.h @@ -205,26 +205,6 @@ class HistoryBackend : public base::RefCountedThreadSafe<HistoryBackend>, void SetImportedFavicons( const std::vector<ImportedFavIconUsage>& favicon_usage); - // Starring ------------------------------------------------------------------ - - void GetAllStarredEntries( - scoped_refptr<GetStarredEntriesRequest> request); - - void UpdateStarredEntry(const StarredEntry& new_entry); - - void CreateStarredEntry(scoped_refptr<CreateStarredEntryRequest> request, - const StarredEntry& entry); - - void DeleteStarredGroup(UIStarID group_id); - - void DeleteStarredURL(const GURL& url); - - void DeleteStarredEntry(history::StarID star_id); - - void GetMostRecentStarredEntries( - scoped_refptr<GetMostRecentStarredEntriesRequest> request, - int max_count); - // Downloads ----------------------------------------------------------------- void QueryDownloads(scoped_refptr<DownloadQueryRequest> request); @@ -263,6 +243,8 @@ class HistoryBackend : public base::RefCountedThreadSafe<HistoryBackend>, void ProcessDBTask(scoped_refptr<HistoryDBTaskRequest> request); + void ProcessEmptyRequest(scoped_refptr<EmptyHistoryRequest> request); + // Deleting ------------------------------------------------------------------ void DeleteURL(const GURL& url); @@ -338,15 +320,6 @@ class HistoryBackend : public base::RefCountedThreadSafe<HistoryBackend>, const QueryOptions& options, QueryResults* result); - // Queries the starred database for all URL entries whose title contains the - // specified text. This is called as necessary from QueryHistoryFTS. The - // matches will be added to the beginning of the result vector in no - // particular order. - void QueryStarredEntriesByText(URLQuerier* querier, - const std::wstring& text_query, - const QueryOptions& options, - QueryResults* results); - // Committing ---------------------------------------------------------------- // We always keep a transaction open on the history database so that multiple |