| Index: chrome/browser/history/history.h
|
| diff --git a/chrome/browser/history/history.h b/chrome/browser/history/history.h
|
| index 565497dc8b95993be8def5cc4cff1999eebf6352..4c79d5dbbd6e75352b7a7fa275057e38140e5123 100644
|
| --- a/chrome/browser/history/history.h
|
| +++ b/chrome/browser/history/history.h
|
| @@ -423,6 +423,13 @@ class HistoryService : public CancelableRequestProvider,
|
| CancelableRequestConsumerBase* consumer,
|
| DownloadCreateCallback* callback);
|
|
|
| + // Implemented by the caller of 'GetNextDownloadId' below.
|
| + typedef Callback1<int/*next_download_id*/>::Type DownloadNextIdCallback;
|
| +
|
| + // Runs the callback with the next available download id.
|
| + Handle GetNextDownloadId(CancelableRequestConsumerBase* consumer,
|
| + DownloadNextIdCallback* callback);
|
| +
|
| // Implemented by the caller of 'QueryDownloads' below, and is called when the
|
| // history service has retrieved a list of all download state. The call
|
| typedef Callback1<std::vector<DownloadPersistentStoreInfo>*>::Type
|
|
|