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

Side by Side Diff: content/browser/download/download_request_handle.h

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 #ifndef CHROME_BROWSER_DOWNLOAD_DOWNLOAD_REQUEST_HANDLE_H_ 5 #ifndef CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_REQUEST_HANDLE_H_
6 #define CHROME_BROWSER_DOWNLOAD_DOWNLOAD_REQUEST_HANDLE_H_ 6 #define CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_REQUEST_HANDLE_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
11 class DownloadManager; 11 class DownloadManager;
12 class ResourceDispatcherHost; 12 class ResourceDispatcherHost;
13 class TabContents; 13 class TabContents;
14 14
15 // A handle used by the download system for operations on the URLRequest 15 // A handle used by the download system for operations on the URLRequest
16 // or objects conditional on it (e.g. TabContents). 16 // or objects conditional on it (e.g. TabContents).
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 // The ID of the child process that started the download. 53 // The ID of the child process that started the download.
54 int child_id_; 54 int child_id_;
55 55
56 // The ID of the render view that started the download. 56 // The ID of the render view that started the download.
57 int render_view_id_; 57 int render_view_id_;
58 58
59 // The ID associated with the request used for the download. 59 // The ID associated with the request used for the download.
60 int request_id_; 60 int request_id_;
61 }; 61 };
62 62
63 #endif // CHROME_BROWSER_DOWNLOAD_DOWNLOAD_REQUEST_HANDLE_H_ 63 #endif // CONTENT_BROWSER_DOWNLOAD_DOWNLOAD_REQUEST_HANDLE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698