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

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

Issue 8135017: Refactor downloads into a ProfileKeyedService. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Changed indentation of calls to DownloadServiceFactory. Created 9 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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/mock_download_manager_delegate.h" 5 #include "content/browser/download/mock_download_manager_delegate.h"
6 6
7 MockDownloadManagerDelegate::~MockDownloadManagerDelegate() { 7 MockDownloadManagerDelegate::~MockDownloadManagerDelegate() {
8 } 8 }
9 9
10 void MockDownloadManagerDelegate::Shutdown() { 10 void MockDownloadManagerDelegate::Shutdown() {
(...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 } 80 }
81 81
82 void MockDownloadManagerDelegate::ChooseSavePath( 82 void MockDownloadManagerDelegate::ChooseSavePath(
83 const base::WeakPtr<SavePackage>& save_package, 83 const base::WeakPtr<SavePackage>& save_package,
84 const FilePath& suggested_path, 84 const FilePath& suggested_path,
85 bool can_save_as_complete) { 85 bool can_save_as_complete) {
86 } 86 }
87 87
88 void MockDownloadManagerDelegate::DownloadProgressUpdated() { 88 void MockDownloadManagerDelegate::DownloadProgressUpdated() {
89 } 89 }
90
91 void MockDownloadManagerDelegate::SetDownloadManager(
92 DownloadManager* manager)
93 {
94 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698