| Index: net/websockets/websocket_frame_parser.h
|
| diff --git a/net/websockets/websocket_frame_parser.h b/net/websockets/websocket_frame_parser.h
|
| index 52e6f85a6bbeb41a990cf798ed84dc9da31adcc4..194370f4a360aae3011f4ae1aa172525693c7260 100644
|
| --- a/net/websockets/websocket_frame_parser.h
|
| +++ b/net/websockets/websocket_frame_parser.h
|
| @@ -5,6 +5,7 @@
|
| #ifndef NET_WEBSOCKETS_WEBSOCKET_FRAME_PARSER_H_
|
| #define NET_WEBSOCKETS_WEBSOCKET_FRAME_PARSER_H_
|
|
|
| +#include <stdint.h>
|
| #include <vector>
|
|
|
| #include "base/basictypes.h"
|
| @@ -75,7 +76,7 @@ class NET_EXPORT WebSocketFrameParser {
|
| WebSocketMaskingKey masking_key_;
|
|
|
| // Amount of payload data read so far for the current frame.
|
| - uint64 frame_offset_;
|
| + uint64_t frame_offset_;
|
|
|
| WebSocketError websocket_error_;
|
|
|
|
|