summaryrefslogtreecommitdiffstats
path: root/chromium/content/child/fileapi/webfilewriter_base.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/child/fileapi/webfilewriter_base.h')
-rw-r--r--chromium/content/child/fileapi/webfilewriter_base.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chromium/content/child/fileapi/webfilewriter_base.h b/chromium/content/child/fileapi/webfilewriter_base.h
index 5168e3cf545..7371e6364eb 100644
--- a/chromium/content/child/fileapi/webfilewriter_base.h
+++ b/chromium/content/child/fileapi/webfilewriter_base.h
@@ -5,7 +5,7 @@
#ifndef CONTENT_CHILD_FILEAPI_WEBFILEWRITER_BASE_H_
#define CONTENT_CHILD_FILEAPI_WEBFILEWRITER_BASE_H_
-#include "base/platform_file.h"
+#include "base/files/file.h"
#include "content/common/content_export.h"
#include "third_party/WebKit/public/platform/WebFileWriter.h"
#include "url/gurl.h"
@@ -30,11 +30,11 @@ class CONTENT_EXPORT WebFileWriterBase
protected:
// This calls DidSucceed() or DidFail() based on the value of |error_code|.
- void DidFinish(base::PlatformFileError error_code);
+ void DidFinish(base::File::Error error_code);
void DidWrite(int64 bytes, bool complete);
void DidSucceed();
- void DidFail(base::PlatformFileError error_code);
+ void DidFail(base::File::Error error_code);
// Derived classes must provide these methods to asynchronously perform
// the requested operation, and they must call the appropiate DidSomething