Index: content/child/fileapi/webfilewriter_impl.h |
diff --git a/content/child/fileapi/webfilewriter_impl.h b/content/child/fileapi/webfilewriter_impl.h |
index c9646579aafff011819ce51800a2b659270a8f03..75fec1f947824baf3d893932881c5e5d0e96e03e 100644 |
--- a/content/child/fileapi/webfilewriter_impl.h |
+++ b/content/child/fileapi/webfilewriter_impl.h |
@@ -5,6 +5,8 @@ |
#ifndef CONTENT_CHILD_FILEAPI_WEBFILEWRITER_IMPL_H_ |
#define CONTENT_CHILD_FILEAPI_WEBFILEWRITER_IMPL_H_ |
+#include <stdint.h> |
+ |
#include <string> |
#include "base/memory/ref_counted.h" |
@@ -31,10 +33,10 @@ class WebFileWriterImpl : public WebFileWriterBase, |
protected: |
// WebFileWriterBase overrides |
- void DoTruncate(const GURL& path, int64 offset) override; |
+ void DoTruncate(const GURL& path, int64_t offset) override; |
void DoWrite(const GURL& path, |
const std::string& blob_id, |
- int64 offset) override; |
+ int64_t offset) override; |
void DoCancel() override; |
private: |