Index: content/browser/download/save_file.h |
diff --git a/content/browser/download/save_file.h b/content/browser/download/save_file.h |
index cf0bf646971ad39c5af27826a9317df560e2efd5..fdcc33f687868571c27aeaa5d5ae55b554ddc272 100644 |
--- a/content/browser/download/save_file.h |
+++ b/content/browser/download/save_file.h |
@@ -24,9 +24,10 @@ class SaveFile { |
virtual ~SaveFile(); |
// BaseFile delegated functions. |
- net::Error Initialize(); |
- net::Error AppendDataToFile(const char* data, size_t data_len); |
- net::Error Rename(const FilePath& full_path); |
+ content::DownloadInterruptReason Initialize(); |
+ content::DownloadInterruptReason AppendDataToFile(const char* data, |
+ size_t data_len); |
+ content::DownloadInterruptReason Rename(const FilePath& full_path); |
void Detach(); |
void Cancel(); |
void Finish(); |