| Index: chrome/browser/history/history_service.h
|
| diff --git a/chrome/browser/history/history_service.h b/chrome/browser/history/history_service.h
|
| index 238950d3c9c00083af2ccd3c505e0b97d22fd666..6d98082430ab49e573934e143db3fbd2af685158 100644
|
| --- a/chrome/browser/history/history_service.h
|
| +++ b/chrome/browser/history/history_service.h
|
| @@ -309,12 +309,14 @@ class HistoryService : public CancelableRequestProvider,
|
| // 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.
|
| - typedef base::Callback<void(Handle, history::MostVisitedURLList)>
|
| + typedef base::Callback<void(const history::MostVisitedURLList*)>
|
| QueryMostVisitedURLsCallback;
|
|
|
| - Handle QueryMostVisitedURLs(int result_count, int days_back,
|
| - CancelableRequestConsumerBase* consumer,
|
| - const QueryMostVisitedURLsCallback& callback);
|
| + base::CancelableTaskTracker::TaskId QueryMostVisitedURLs(
|
| + int result_count,
|
| + int days_back,
|
| + const QueryMostVisitedURLsCallback& callback,
|
| + base::CancelableTaskTracker* tracker);
|
|
|
| // Request the |result_count| URLs filtered and sorted based on the |filter|.
|
| // If |extended_info| is true, additional data will be provided in the
|
|
|