summaryrefslogtreecommitdiffstats
path: root/chrome/browser/download/download_file.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/download/download_file.h')
-rw-r--r--chrome/browser/download/download_file.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/chrome/browser/download/download_file.h b/chrome/browser/download/download_file.h
index ea74318..f1ffcea 100644
--- a/chrome/browser/download/download_file.h
+++ b/chrome/browser/download/download_file.h
@@ -52,6 +52,9 @@
#include "base/timer.h"
#include "chrome/browser/history/download_types.h"
+namespace net {
+class IOBuffer;
+}
class DownloadManager;
class FilePath;
class GURL;
@@ -70,7 +73,7 @@ class URLRequestContext;
struct DownloadBuffer {
Lock lock;
- typedef std::pair<char *, int> Contents;
+ typedef std::pair<net::IOBuffer*, int> Contents;
std::vector<Contents> contents;
};