Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(249)

Side by Side Diff: content/browser/download/download_item_impl_delegate.cc

Issue 10915180: Make DownloadHistory observe manager, items (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: @r168573 Created 8 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 void DownloadItemImplDelegate::UpdatePersistence(DownloadItemImpl* download) {} 63 void DownloadItemImplDelegate::UpdatePersistence(DownloadItemImpl* download) {}
64 64
65 void DownloadItemImplDelegate::DownloadStopped(DownloadItemImpl* download) {} 65 void DownloadItemImplDelegate::DownloadStopped(DownloadItemImpl* download) {}
66 66
67 void DownloadItemImplDelegate::DownloadCompleted(DownloadItemImpl* download) {} 67 void DownloadItemImplDelegate::DownloadCompleted(DownloadItemImpl* download) {}
68 68
69 void DownloadItemImplDelegate::DownloadOpened(DownloadItemImpl* download) {} 69 void DownloadItemImplDelegate::DownloadOpened(DownloadItemImpl* download) {}
70 70
71 void DownloadItemImplDelegate::DownloadRemoved(DownloadItemImpl* download) {} 71 void DownloadItemImplDelegate::DownloadRemoved(DownloadItemImpl* download) {}
72 72
73 void DownloadItemImplDelegate::DownloadRenamedToIntermediateName( 73 void DownloadItemImplDelegate::ShowDownloadInBrowser(
74 DownloadItemImpl* download) {}
75
76 void DownloadItemImplDelegate::DownloadRenamedToFinalName(
77 DownloadItemImpl* download) {} 74 DownloadItemImpl* download) {}
78 75
79 void DownloadItemImplDelegate::AssertStateConsistent( 76 void DownloadItemImplDelegate::AssertStateConsistent(
80 DownloadItemImpl* download) const {} 77 DownloadItemImpl* download) const {}
81 78
82 } // namespace content 79 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698