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 "base/logging.h" | 5 #include "base/logging.h" |
6 #include "content/browser/download/download_item_impl_delegate.h" | 6 #include "content/browser/download/download_item_impl_delegate.h" |
7 | 7 |
8 class DownloadItemImpl; | 8 class DownloadItemImpl; |
9 | 9 |
10 // Infrastructure in DownloadItemImplDelegate to assert invariant that | 10 // Infrastructure in DownloadItemImplDelegate to assert invariant that |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 | 52 |
53 void DownloadItemImplDelegate::DownloadCompleted(DownloadItemImpl* download) {} | 53 void DownloadItemImplDelegate::DownloadCompleted(DownloadItemImpl* download) {} |
54 | 54 |
55 void DownloadItemImplDelegate::DownloadOpened(DownloadItemImpl* download) {} | 55 void DownloadItemImplDelegate::DownloadOpened(DownloadItemImpl* download) {} |
56 | 56 |
57 void DownloadItemImplDelegate::DownloadRemoved(DownloadItemImpl* download) {} | 57 void DownloadItemImplDelegate::DownloadRemoved(DownloadItemImpl* download) {} |
58 | 58 |
59 void DownloadItemImplDelegate::DownloadRenamedToIntermediateName( | 59 void DownloadItemImplDelegate::DownloadRenamedToIntermediateName( |
60 DownloadItemImpl* download) {} | 60 DownloadItemImpl* download) {} |
61 | 61 |
62 void DownloadItemImplDelegate::DownloadRenamedToFinalName( | |
63 DownloadItemImpl* download) {} | |
64 | |
65 void DownloadItemImplDelegate::AssertStateConsistent( | 62 void DownloadItemImplDelegate::AssertStateConsistent( |
66 DownloadItemImpl* download) const {} | 63 DownloadItemImpl* download) const {} |
OLD | NEW |