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

Side by Side Diff: content/public/browser/download_manager_delegate.cc

Issue 11571025: Initial CL for Downloads resumption. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix try bot problems. Created 7 years, 11 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 "content/public/browser/download_manager_delegate.h" 5 #include "content/public/browser/download_manager_delegate.h"
6 6
7 #include "base/file_util.h"
asanka 2012/12/28 22:01:42 Remove?
Randy Smith (Not in Mondays) 2012/12/29 17:16:16 Done.
7 #include "content/public/browser/download_id.h" 8 #include "content/public/browser/download_id.h"
8 #include "content/public/browser/download_item.h" 9 #include "content/public/browser/download_item.h"
9 10
10 namespace content { 11 namespace content {
11 12
12 DownloadId DownloadManagerDelegate::GetNextId() { 13 DownloadId DownloadManagerDelegate::GetNextId() {
13 return DownloadId::Invalid(); 14 return DownloadId::Invalid();
14 } 15 }
15 16
16 bool DownloadManagerDelegate::DetermineDownloadTarget( 17 bool DownloadManagerDelegate::DetermineDownloadTarget(
(...skipping 23 matching lines...) Expand all
40 return true; 41 return true;
41 } 42 }
42 43
43 bool DownloadManagerDelegate::GenerateFileHash() { 44 bool DownloadManagerDelegate::GenerateFileHash() {
44 return false; 45 return false;
45 } 46 }
46 47
47 DownloadManagerDelegate::~DownloadManagerDelegate() {} 48 DownloadManagerDelegate::~DownloadManagerDelegate() {}
48 49
49 } // namespace content 50 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698