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

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

Issue 7618048: Move the core download files to content. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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 "chrome/browser/download/download_file.h" 5 #include "content/browser/download/download_file.h"
6 6
7 #include <string> 7 #include <string>
8 8
9 #include "base/file_util.h" 9 #include "base/file_util.h"
10 #include "base/stringprintf.h" 10 #include "base/stringprintf.h"
11 #include "chrome/browser/download/download_create_info.h"
12 #include "chrome/browser/download/download_manager.h"
13 #include "chrome/browser/download/download_util.h" 11 #include "chrome/browser/download/download_util.h"
14 #include "content/browser/browser_thread.h" 12 #include "content/browser/browser_thread.h"
13 #include "content/browser/download/download_create_info.h"
14 #include "content/browser/download/download_manager.h"
15 15
16 DownloadFile::DownloadFile(const DownloadCreateInfo* info, 16 DownloadFile::DownloadFile(const DownloadCreateInfo* info,
17 DownloadManager* download_manager) 17 DownloadManager* download_manager)
18 : BaseFile(info->save_info.file_path, 18 : BaseFile(info->save_info.file_path,
19 info->url(), 19 info->url(),
20 info->referrer_url, 20 info->referrer_url,
21 info->received_bytes, 21 info->received_bytes,
22 info->save_info.file_stream), 22 info->save_info.file_stream),
23 id_(info->download_id), 23 id_(info->download_id),
24 request_handle_(info->request_handle), 24 request_handle_(info->request_handle),
(...skipping 18 matching lines...) Expand all
43 std::string DownloadFile::DebugString() const { 43 std::string DownloadFile::DebugString() const {
44 return base::StringPrintf("{" 44 return base::StringPrintf("{"
45 " id_ = " "%d" 45 " id_ = " "%d"
46 " request_handle = %s" 46 " request_handle = %s"
47 " Base File = %s" 47 " Base File = %s"
48 " }", 48 " }",
49 id_, 49 id_,
50 request_handle_.DebugString().c_str(), 50 request_handle_.DebugString().c_str(),
51 BaseFile::DebugString().c_str()); 51 BaseFile::DebugString().c_str());
52 } 52 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698