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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 void DownloadItemImplDelegate::UpdatePersistence(DownloadItemImpl* download) {} | 66 void DownloadItemImplDelegate::UpdatePersistence(DownloadItemImpl* download) {} |
67 | 67 |
68 void DownloadItemImplDelegate::DownloadStopped(DownloadItemImpl* download) {} | 68 void DownloadItemImplDelegate::DownloadStopped(DownloadItemImpl* download) {} |
69 | 69 |
70 void DownloadItemImplDelegate::DownloadCompleted(DownloadItemImpl* download) {} | 70 void DownloadItemImplDelegate::DownloadCompleted(DownloadItemImpl* download) {} |
71 | 71 |
72 void DownloadItemImplDelegate::DownloadOpened(DownloadItemImpl* download) {} | 72 void DownloadItemImplDelegate::DownloadOpened(DownloadItemImpl* download) {} |
73 | 73 |
74 void DownloadItemImplDelegate::DownloadRemoved(DownloadItemImpl* download) {} | 74 void DownloadItemImplDelegate::DownloadRemoved(DownloadItemImpl* download) {} |
75 | 75 |
76 void DownloadItemImplDelegate::DownloadRenamedToIntermediateName( | 76 void DownloadItemImplDelegate::ShowDownloadInBrowser( |
77 DownloadItemImpl* download) {} | |
78 | |
79 void DownloadItemImplDelegate::DownloadRenamedToFinalName( | |
80 DownloadItemImpl* download) {} | 77 DownloadItemImpl* download) {} |
81 | 78 |
82 void DownloadItemImplDelegate::AssertStateConsistent( | 79 void DownloadItemImplDelegate::AssertStateConsistent( |
83 DownloadItemImpl* download) const {} | 80 DownloadItemImpl* download) const {} |
84 | 81 |
85 } // namespace content | 82 } // namespace content |
OLD | NEW |