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

Unified Diff: chrome/browser/download/download_create_info.h

Issue 7112011: Change DownloadProcessHandle to be more of an encapsulated class. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged to LKGR. Created 9 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/download/download_create_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/download/download_create_info.h
diff --git a/chrome/browser/download/download_create_info.h b/chrome/browser/download/download_create_info.h
index 5adeac266c37bf969f22ecdab810f74cebdad1b1..a9f5ec1776df7ceef767407a7909c5c18e7d596e 100644
--- a/chrome/browser/download/download_create_info.h
+++ b/chrome/browser/download/download_create_info.h
@@ -13,7 +13,7 @@
#include "base/file_path.h"
#include "base/time.h"
#include "chrome/browser/download/download_file.h"
-#include "chrome/browser/download/download_process_handle.h"
+#include "chrome/browser/download/download_request_handle.h"
#include "googleurl/src/gurl.h"
// Used for informing the download manager of a new download, since we don't
@@ -71,9 +71,9 @@ struct DownloadCreateInfo {
// True if the download was initiated by user action.
bool has_user_gesture;
- // The handle to the process information. Used for operations outside the
- // download system.
- DownloadProcessHandle process_handle;
+ // The handle to the download request information. Used for operations
+ // outside the download system.
+ DownloadRequestHandle request_handle;
// The handle of the download in the history database.
int64 db_handle;
« no previous file with comments | « no previous file | chrome/browser/download/download_create_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698