| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_ITEM_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_ITEM_IMPL_H_ |
| 6 #define CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_ITEM_IMPL_H_ | 6 #define CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_ITEM_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 const std::string& mime_type, | 83 const std::string& mime_type, |
| 84 scoped_ptr<DownloadRequestHandleInterface> request_handle, | 84 scoped_ptr<DownloadRequestHandleInterface> request_handle, |
| 85 const net::BoundNetLog& bound_net_log); | 85 const net::BoundNetLog& bound_net_log); |
| 86 | 86 |
| 87 virtual ~DownloadItemImpl(); | 87 virtual ~DownloadItemImpl(); |
| 88 | 88 |
| 89 // DownloadItem | 89 // DownloadItem |
| 90 virtual void AddObserver(DownloadItem::Observer* observer) OVERRIDE; | 90 virtual void AddObserver(DownloadItem::Observer* observer) OVERRIDE; |
| 91 virtual void RemoveObserver(DownloadItem::Observer* observer) OVERRIDE; | 91 virtual void RemoveObserver(DownloadItem::Observer* observer) OVERRIDE; |
| 92 virtual void UpdateObservers() OVERRIDE; | 92 virtual void UpdateObservers() OVERRIDE; |
| 93 virtual void DangerousDownloadValidated() OVERRIDE; | 93 virtual void ValidateDangerousDownload() OVERRIDE; |
| 94 virtual void Pause() OVERRIDE; | 94 virtual void Pause() OVERRIDE; |
| 95 virtual void Resume() OVERRIDE; | 95 virtual void Resume() OVERRIDE; |
| 96 virtual void Cancel(bool user_cancel) OVERRIDE; | 96 virtual void Cancel(bool user_cancel) OVERRIDE; |
| 97 virtual void Delete(DeleteReason reason) OVERRIDE; | 97 virtual void DiscardDangerousDownload(DeleteReason reason, |
| 98 const AcquireFileCallback& callback) |
| 99 OVERRIDE; |
| 98 virtual void Remove() OVERRIDE; | 100 virtual void Remove() OVERRIDE; |
| 99 virtual void OpenDownload() OVERRIDE; | 101 virtual void OpenDownload() OVERRIDE; |
| 100 virtual void ShowDownloadInShell() OVERRIDE; | 102 virtual void ShowDownloadInShell() OVERRIDE; |
| 101 virtual int32 GetId() const OVERRIDE; | 103 virtual int32 GetId() const OVERRIDE; |
| 102 virtual DownloadId GetGlobalId() const OVERRIDE; | 104 virtual DownloadId GetGlobalId() const OVERRIDE; |
| 103 virtual DownloadState GetState() const OVERRIDE; | 105 virtual DownloadState GetState() const OVERRIDE; |
| 104 virtual DownloadInterruptReason GetLastReason() const OVERRIDE; | 106 virtual DownloadInterruptReason GetLastReason() const OVERRIDE; |
| 105 virtual bool IsPaused() const OVERRIDE; | 107 virtual bool IsPaused() const OVERRIDE; |
| 106 virtual bool IsTemporary() const OVERRIDE; | 108 virtual bool IsTemporary() const OVERRIDE; |
| 107 virtual bool CanResume() const OVERRIDE; | 109 virtual bool CanResume() const OVERRIDE; |
| (...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 531 const net::BoundNetLog bound_net_log_; | 533 const net::BoundNetLog bound_net_log_; |
| 532 | 534 |
| 533 base::WeakPtrFactory<DownloadItemImpl> weak_ptr_factory_; | 535 base::WeakPtrFactory<DownloadItemImpl> weak_ptr_factory_; |
| 534 | 536 |
| 535 DISALLOW_COPY_AND_ASSIGN(DownloadItemImpl); | 537 DISALLOW_COPY_AND_ASSIGN(DownloadItemImpl); |
| 536 }; | 538 }; |
| 537 | 539 |
| 538 } // namespace content | 540 } // namespace content |
| 539 | 541 |
| 540 #endif // CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_ITEM_IMPL_H_ | 542 #endif // CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_ITEM_IMPL_H_ |
| OLD | NEW |