| Index: chrome/browser/history/history_service.cc
|
| diff --git a/chrome/browser/history/history_service.cc b/chrome/browser/history/history_service.cc
|
| index b697f3798b8b1e10444db72e369ba844ecdcd6af..644dc8585bf0c88ce139d66c658111c29d5f2d62 100644
|
| --- a/chrome/browser/history/history_service.cc
|
| +++ b/chrome/browser/history/history_service.cc
|
| @@ -14,10 +14,6 @@
|
| // -> SQLite connection to History
|
| // -> ArchivedDatabase
|
| // -> SQLite connection to Archived History
|
| -// -> TextDatabaseManager
|
| -// -> SQLite connection to one month's data
|
| -// -> SQLite connection to one month's data
|
| -// ...
|
| // -> ThumbnailDatabase
|
| // -> SQLite connection to Thumbnails
|
| // (and favicons)
|
| @@ -597,16 +593,6 @@ void HistoryService::AddPagesWithDetails(const history::URLRows& info,
|
| &HistoryBackend::AddPagesWithDetails, info, visit_source);
|
| }
|
|
|
| -void HistoryService::SetPageContents(const GURL& url,
|
| - const string16& contents) {
|
| - DCHECK(thread_checker_.CalledOnValidThread());
|
| - if (!CanAddURL(url))
|
| - return;
|
| -
|
| - ScheduleAndForget(PRIORITY_LOW, &HistoryBackend::SetPageContents,
|
| - url, contents);
|
| -}
|
| -
|
| HistoryService::Handle HistoryService::GetPageThumbnail(
|
| const GURL& page_url,
|
| CancelableRequestConsumerBase* consumer,
|
|
|