| Index: chrome/browser/history/history_backend.h
|
| diff --git a/chrome/browser/history/history_backend.h b/chrome/browser/history/history_backend.h
|
| index dfc962a1e370a2bf8272403c07df48822dcae6c8..af1324a56efdb7fe97267002954f97f2b18241ab 100644
|
| --- a/chrome/browser/history/history_backend.h
|
| +++ b/chrome/browser/history/history_backend.h
|
| @@ -176,10 +176,9 @@ class HistoryBackend : public base::RefCountedThreadSafe<HistoryBackend>,
|
| // Request the |result_count| most visited URLs and the chain of
|
| // redirects leading to each of these URLs. |days_back| is the
|
| // number of days of history to use. Used by TopSites.
|
| - void QueryMostVisitedURLs(
|
| - scoped_refptr<QueryMostVisitedURLsRequest> request,
|
| - int result_count,
|
| - int days_back);
|
| + void QueryMostVisitedURLs(int result_count,
|
| + int days_back,
|
| + MostVisitedURLList* result);
|
|
|
| // Request the |result_count| URLs and the chain of redirects
|
| // leading to each of these URLs, filterd and sorted based on the |filter|.
|
| @@ -190,11 +189,6 @@ class HistoryBackend : public base::RefCountedThreadSafe<HistoryBackend>,
|
| const history::VisitFilter& filter,
|
| bool debug);
|
|
|
| - // QueryMostVisitedURLs without the request.
|
| - void QueryMostVisitedURLsImpl(int result_count,
|
| - int days_back,
|
| - MostVisitedURLList* result);
|
| -
|
| // Favicon -------------------------------------------------------------------
|
|
|
| void GetFavicons(
|
|
|