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

Side by Side Diff: content/browser/download/download_request_handle.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_request_handle.h" 5 #include "content/browser/download/download_request_handle.h"
6 6
7 #include "base/stringprintf.h" 7 #include "base/stringprintf.h"
8 #include "chrome/browser/profiles/profile.h" 8 #include "chrome/browser/profiles/profile.h"
9 #include "chrome/browser/tab_contents/tab_util.h" 9 #include "chrome/browser/tab_contents/tab_util.h"
10 #include "content/browser/browser_thread.h" 10 #include "content/browser/browser_thread.h"
11 #include "content/browser/renderer_host/resource_dispatcher_host.h" 11 #include "content/browser/renderer_host/resource_dispatcher_host.h"
12 #include "content/browser/tab_contents/tab_contents.h" 12 #include "content/browser/tab_contents/tab_contents.h"
13 13
14 // IO Thread indirections to resource dispatcher host. 14 // IO Thread indirections to resource dispatcher host.
15 // Provided as targets for PostTask from within this object 15 // Provided as targets for PostTask from within this object
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 std::string DownloadRequestHandle::DebugString() const { 104 std::string DownloadRequestHandle::DebugString() const {
105 return base::StringPrintf("{" 105 return base::StringPrintf("{"
106 " child_id = %d" 106 " child_id = %d"
107 " render_view_id = %d" 107 " render_view_id = %d"
108 " request_id = %d" 108 " request_id = %d"
109 "}", 109 "}",
110 child_id_, 110 child_id_,
111 render_view_id_, 111 render_view_id_,
112 request_id_); 112 request_id_);
113 } 113 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698