| Index: content/child/resource_dispatcher.h
|
| diff --git a/content/child/resource_dispatcher.h b/content/child/resource_dispatcher.h
|
| index bf28cd5b8e29d94d3b6dde6a42307c4109bbe0d1..5b1d867dc5fc537e4c4c699dc38a2688ab06e1df 100644
|
| --- a/content/child/resource_dispatcher.h
|
| +++ b/content/child/resource_dispatcher.h
|
| @@ -7,10 +7,13 @@
|
| #ifndef CONTENT_CHILD_RESOURCE_DISPATCHER_H_
|
| #define CONTENT_CHILD_RESOURCE_DISPATCHER_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <deque>
|
| #include <string>
|
|
|
| #include "base/containers/hash_tables.h"
|
| +#include "base/macros.h"
|
| #include "base/memory/linked_ptr.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/memory/shared_memory.h"
|
| @@ -187,7 +190,7 @@ class CONTENT_EXPORT ResourceDispatcher : public IPC::Listener {
|
| void FollowPendingRedirect(int request_id, PendingRequestInfo& request_info);
|
|
|
| // Message response handlers, called by the message handler for this process.
|
| - void OnUploadProgress(int request_id, int64 position, int64 size);
|
| + void OnUploadProgress(int request_id, int64_t position, int64_t size);
|
| void OnReceivedResponse(int request_id, const ResourceResponseHead&);
|
| void OnReceivedCachedMetadata(int request_id, const std::vector<char>& data);
|
| void OnReceivedRedirect(int request_id,
|
|
|