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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 BrowserContext* DownloadItemImplDelegate::GetBrowserContext() const { | 59 BrowserContext* DownloadItemImplDelegate::GetBrowserContext() const { |
60 return NULL; | 60 return NULL; |
61 } | 61 } |
62 | 62 |
63 void DownloadItemImplDelegate::UpdatePersistence(DownloadItemImpl* download) {} | 63 void DownloadItemImplDelegate::UpdatePersistence(DownloadItemImpl* download) {} |
64 | 64 |
65 void DownloadItemImplDelegate::DownloadOpened(DownloadItemImpl* download) {} | 65 void DownloadItemImplDelegate::DownloadOpened(DownloadItemImpl* download) {} |
66 | 66 |
67 void DownloadItemImplDelegate::DownloadRemoved(DownloadItemImpl* download) {} | 67 void DownloadItemImplDelegate::DownloadRemoved(DownloadItemImpl* download) {} |
68 | 68 |
69 void DownloadItemImplDelegate::ShowDownloadInBrowser( | |
70 DownloadItemImpl* download) {} | |
71 | |
72 void DownloadItemImplDelegate::AssertStateConsistent( | 69 void DownloadItemImplDelegate::AssertStateConsistent( |
73 DownloadItemImpl* download) const {} | 70 DownloadItemImpl* download) const {} |
74 | 71 |
75 } // namespace content | 72 } // namespace content |
OLD | NEW |