Index: content/browser/fileapi/fileapi_message_filter.h |
diff --git a/content/browser/fileapi/fileapi_message_filter.h b/content/browser/fileapi/fileapi_message_filter.h |
index 3ad767ecabe1a627b2dc568c7ce771de63ff561a..74d056fef8e81eca41e294288ce2a252af6ac9cf 100644 |
--- a/content/browser/fileapi/fileapi_message_filter.h |
+++ b/content/browser/fileapi/fileapi_message_filter.h |
@@ -5,6 +5,9 @@ |
#ifndef CONTENT_BROWSER_FILEAPI_FILEAPI_MESSAGE_FILTER_H_ |
#define CONTENT_BROWSER_FILEAPI_FILEAPI_MESSAGE_FILTER_H_ |
+#include <stddef.h> |
+#include <stdint.h> |
+ |
#include <map> |
#include <set> |
#include <string> |
@@ -12,6 +15,7 @@ |
#include "base/callback.h" |
#include "base/containers/hash_tables.h" |
#include "base/files/file_util_proxy.h" |
+#include "base/macros.h" |
#include "base/memory/ref_counted.h" |
#include "base/memory/shared_memory.h" |
#include "content/browser/streams/stream.h" |
@@ -73,7 +77,7 @@ class CONTENT_EXPORT FileAPIMessageFilter : public BrowserMessageFilter { |
StreamContext* stream_context); |
// BrowserMessageFilter implementation. |
- void OnChannelConnected(int32 peer_pid) override; |
+ void OnChannelConnected(int32_t peer_pid) override; |
void OnChannelClosing() override; |
base::TaskRunner* OverrideTaskRunnerForMessage( |
const IPC::Message& message) override; |
@@ -111,8 +115,8 @@ class CONTENT_EXPORT FileAPIMessageFilter : public BrowserMessageFilter { |
void OnWrite(int request_id, |
const GURL& path, |
const std::string& blob_uuid, |
- int64 offset); |
- void OnTruncate(int request_id, const GURL& path, int64 length); |
+ int64_t offset); |
+ void OnTruncate(int request_id, const GURL& path, int64_t length); |
void OnTouchFile(int request_id, |
const GURL& path, |
const base::Time& last_access_time, |
@@ -172,7 +176,7 @@ class CONTENT_EXPORT FileAPIMessageFilter : public BrowserMessageFilter { |
bool has_more); |
void DidWrite(int request_id, |
base::File::Error result, |
- int64 bytes, |
+ int64_t bytes, |
bool complete); |
void DidOpenFileSystem(int request_id, |
const GURL& root, |