| Index: chrome/browser/history/history_service.h
|
| diff --git a/chrome/browser/history/history_service.h b/chrome/browser/history/history_service.h
|
| index 00c17e9680ace80926025d6c27f1ee20151887ca..e463444c1e74aa3359b1fed7f099a78688150540 100644
|
| --- a/chrome/browser/history/history_service.h
|
| +++ b/chrome/browser/history/history_service.h
|
| @@ -240,20 +240,20 @@ class HistoryService : public CancelableRequestProvider,
|
| // empty.
|
| //
|
| // If success is false, neither the row nor the vector will be valid.
|
| - typedef base::Callback<void(
|
| - Handle,
|
| - bool, // Success flag, when false, nothing else is valid.
|
| - const history::URLRow*,
|
| - history::VisitVector*)> QueryURLCallback;
|
| + typedef base::Callback<
|
| + void(bool, // Success flag, when false, nothing else is valid.
|
| + const history::URLRow&,
|
| + const history::VisitVector&)> QueryURLCallback;
|
|
|
| // Queries the basic information about the URL in the history database. If
|
| // the caller is interested in the visits (each time the URL is visited),
|
| // set |want_visits| to true. If these are not needed, the function will be
|
| // faster by setting this to false.
|
| - Handle QueryURL(const GURL& url,
|
| - bool want_visits,
|
| - CancelableRequestConsumerBase* consumer,
|
| - const QueryURLCallback& callback);
|
| + base::CancelableTaskTracker::TaskId QueryURL(
|
| + const GURL& url,
|
| + bool want_visits,
|
| + const QueryURLCallback& callback,
|
| + base::CancelableTaskTracker* tracker);
|
|
|
| // Provides the result of a query. See QueryResults in history_types.h.
|
| // The common use will be to use QueryResults.Swap to suck the contents of
|
|
|