| Index: content/public/browser/download_item.h
|
| diff --git a/content/public/browser/download_item.h b/content/public/browser/download_item.h
|
| index d0fc397159b1534b08367770adfe9fd5a2ae799d..5a85ab0118cb4d0ee4e8d599c969b91be5b16d6d 100644
|
| --- a/content/public/browser/download_item.h
|
| +++ b/content/public/browser/download_item.h
|
| @@ -43,7 +43,6 @@ class BrowserContext;
|
| class DownloadId;
|
| class DownloadManager;
|
| class WebContents;
|
| -struct DownloadPersistentStoreInfo;
|
|
|
| // One DownloadItem per download. This is the model class that stores all the
|
| // state for a download. Multiple views, such as a tab's download shelf and the
|
| @@ -223,8 +222,6 @@ class CONTENT_EXPORT DownloadItem : public base::SupportsUserData {
|
| // true.
|
| virtual void OnContentCheckCompleted(DownloadDangerType danger_type) = 0;
|
|
|
| - virtual bool IsPersisted() const = 0;
|
| -
|
| // Accessors
|
| virtual const std::string& GetHash() const = 0;
|
| virtual DownloadState GetState() const = 0;
|
| @@ -245,7 +242,6 @@ class CONTENT_EXPORT DownloadItem : public base::SupportsUserData {
|
| virtual DownloadId GetGlobalId() const = 0;
|
| virtual base::Time GetStartTime() const = 0;
|
| virtual base::Time GetEndTime() const = 0;
|
| - virtual int64 GetDbHandle() const = 0;
|
| virtual bool IsPaused() const = 0;
|
| virtual bool GetOpenWhenComplete() const = 0;
|
| virtual void SetOpenWhenComplete(bool open) = 0;
|
| @@ -269,7 +265,6 @@ class CONTENT_EXPORT DownloadItem : public base::SupportsUserData {
|
| virtual const std::string& GetETag() const = 0;
|
|
|
| virtual DownloadInterruptReason GetLastReason() const = 0;
|
| - virtual DownloadPersistentStoreInfo GetPersistentStoreInfo() const = 0;
|
| virtual BrowserContext* GetBrowserContext() const = 0;
|
| virtual WebContents* GetWebContents() const = 0;
|
|
|
|
|