| Index: content/browser/download/download_item_impl.h
|
| diff --git a/content/browser/download/download_item_impl.h b/content/browser/download/download_item_impl.h
|
| index 1b4a33434550b7ad91f83c256681026ffe7dc835..593fc4667d269b999e5cb4495856d409afa49911 100644
|
| --- a/content/browser/download/download_item_impl.h
|
| +++ b/content/browser/download/download_item_impl.h
|
| @@ -195,9 +195,6 @@ class CONTENT_EXPORT DownloadItemImpl : public content::DownloadItem {
|
| virtual FilePath GetUserVerifiedFilePath() const OVERRIDE;
|
| virtual std::string DebugString(bool verbose) const OVERRIDE;
|
| virtual void MockDownloadOpenForTesting() OVERRIDE;
|
| - virtual ExternalData* GetExternalData(const void* key) OVERRIDE;
|
| - virtual const ExternalData* GetExternalData(const void* key) const OVERRIDE;
|
| - virtual void SetExternalData(const void* key, ExternalData* data) OVERRIDE;
|
|
|
| private:
|
| // Construction common to all constructors. |active| should be true for new
|
| @@ -404,10 +401,6 @@ class CONTENT_EXPORT DownloadItemImpl : public content::DownloadItem {
|
| // Did the delegate delay calling Complete on this download?
|
| bool delegate_delayed_complete_;
|
|
|
| - // External Data storage. All objects in the store
|
| - // are owned by the DownloadItemImpl.
|
| - std::map<const void*, ExternalData*> external_data_map_;
|
| -
|
| // Net log to use for this download.
|
| const net::BoundNetLog bound_net_log_;
|
|
|
|
|