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 #include "content/browser/download/download_item_impl_delegate.h" | 5 #include "content/browser/download/download_item_impl_delegate.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "content/browser/download/download_item_impl.h" | 8 #include "content/browser/download/download_item_impl.h" |
9 | 9 |
10 namespace content { | 10 namespace content { |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 | 58 |
59 void DownloadItemImplDelegate::ResumeInterruptedDownload( | 59 void DownloadItemImplDelegate::ResumeInterruptedDownload( |
60 scoped_ptr<DownloadUrlParameters> params, content::DownloadId id) {} | 60 scoped_ptr<DownloadUrlParameters> params, content::DownloadId id) {} |
61 | 61 |
62 BrowserContext* DownloadItemImplDelegate::GetBrowserContext() const { | 62 BrowserContext* DownloadItemImplDelegate::GetBrowserContext() const { |
63 return NULL; | 63 return NULL; |
64 } | 64 } |
65 | 65 |
66 void DownloadItemImplDelegate::UpdatePersistence(DownloadItemImpl* download) {} | 66 void DownloadItemImplDelegate::UpdatePersistence(DownloadItemImpl* download) {} |
67 | 67 |
68 void DownloadItemImplDelegate::DownloadOpened(DownloadItemImpl* download) {} | 68 void DownloadItemImplDelegate::OpenDownload(DownloadItemImpl* download) {} |
| 69 |
| 70 void DownloadItemImplDelegate::ShowDownloadInShell(DownloadItemImpl* download) { |
| 71 } |
69 | 72 |
70 void DownloadItemImplDelegate::DownloadRemoved(DownloadItemImpl* download) {} | 73 void DownloadItemImplDelegate::DownloadRemoved(DownloadItemImpl* download) {} |
71 | 74 |
72 void DownloadItemImplDelegate::ShowDownloadInBrowser( | 75 void DownloadItemImplDelegate::ShowDownloadInBrowser( |
73 DownloadItemImpl* download) {} | 76 DownloadItemImpl* download) {} |
74 | 77 |
75 void DownloadItemImplDelegate::AssertStateConsistent( | 78 void DownloadItemImplDelegate::AssertStateConsistent( |
76 DownloadItemImpl* download) const {} | 79 DownloadItemImpl* download) const {} |
77 | 80 |
78 } // namespace content | 81 } // namespace content |
OLD | NEW |