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

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: @r159248 Created 8 years, 2 months 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 "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
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 {}
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698