| Index: net/websockets/websocket_test_util.h
|
| diff --git a/net/websockets/websocket_test_util.h b/net/websockets/websocket_test_util.h
|
| index f620f18d6b48577d96de403b4212abd5740e1c62..c2fe1f96a074bc0d4fa580dee29ae75b1db0ef2c 100644
|
| --- a/net/websockets/websocket_test_util.h
|
| +++ b/net/websockets/websocket_test_util.h
|
| @@ -5,6 +5,7 @@
|
| #ifndef NET_WEBSOCKETS_WEBSOCKET_TEST_UTIL_H_
|
| #define NET_WEBSOCKETS_WEBSOCKET_TEST_UTIL_H_
|
|
|
| +#include <stdint.h>
|
| #include <string>
|
|
|
| #include "base/basictypes.h"
|
| @@ -33,11 +34,11 @@ class URLRequestContext;
|
|
|
| class LinearCongruentialGenerator {
|
| public:
|
| - explicit LinearCongruentialGenerator(uint32 seed);
|
| - uint32 Generate();
|
| + explicit LinearCongruentialGenerator(uint32_t seed);
|
| + uint32_t Generate();
|
|
|
| private:
|
| - uint64 current_;
|
| + uint64_t current_;
|
| };
|
|
|
| // Generates a standard WebSocket handshake request. The challenge key used is
|
|
|