| Index: content/renderer/p2p/socket_client_impl.h
|
| diff --git a/content/renderer/p2p/socket_client_impl.h b/content/renderer/p2p/socket_client_impl.h
|
| index 4db0148de786636335e28d5ea962737dc5e4ffec..fd1099a4f0f36b2419f4bf1ce9c5218324f17e0d 100644
|
| --- a/content/renderer/p2p/socket_client_impl.h
|
| +++ b/content/renderer/p2p/socket_client_impl.h
|
| @@ -5,8 +5,11 @@
|
| #ifndef CONTENT_RENDERER_P2P_SOCKET_CLIENT_IMPL_H_
|
| #define CONTENT_RENDERER_P2P_SOCKET_CLIENT_IMPL_H_
|
|
|
| +#include <stdint.h>
|
| +
|
| #include <vector>
|
|
|
| +#include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| #include "content/common/p2p_socket_type.h"
|
| #include "content/renderer/p2p/socket_client.h"
|
| @@ -117,8 +120,8 @@ class P2PSocketClientImpl : public P2PSocketClient {
|
| State state_;
|
|
|
| // These two fields are used to identify packets for tracing.
|
| - uint32 random_socket_id_;
|
| - uint32 next_packet_id_;
|
| + uint32_t random_socket_id_;
|
| + uint32_t next_packet_id_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(P2PSocketClientImpl);
|
| };
|
|
|