| Index: remoting/client/plugin/pepper_packet_socket_factory.h
|
| diff --git a/remoting/client/plugin/pepper_packet_socket_factory.h b/remoting/client/plugin/pepper_packet_socket_factory.h
|
| index d355ff3569d085284bb583b92feb9d02ff535bc1..c1f001a706b2bf7dacda3d0171ff64fc2407b4ef 100644
|
| --- a/remoting/client/plugin/pepper_packet_socket_factory.h
|
| +++ b/remoting/client/plugin/pepper_packet_socket_factory.h
|
| @@ -5,7 +5,8 @@
|
| #ifndef REMOTING_CLIENT_PLUGIN_PEPPER_PACKET_SOCKET_FACTORY_H_
|
| #define REMOTING_CLIENT_PLUGIN_PEPPER_PACKET_SOCKET_FACTORY_H_
|
|
|
| -#include "base/basictypes.h"
|
| +#include <stdint.h>
|
| +
|
| #include "base/compiler_specific.h"
|
| #include "base/macros.h"
|
| #include "ppapi/cpp/instance_handle.h"
|
| @@ -20,12 +21,12 @@ class PepperPacketSocketFactory : public rtc::PacketSocketFactory {
|
|
|
| rtc::AsyncPacketSocket* CreateUdpSocket(
|
| const rtc::SocketAddress& local_address,
|
| - uint16 min_port,
|
| - uint16 max_port) override;
|
| + uint16_t min_port,
|
| + uint16_t max_port) override;
|
| rtc::AsyncPacketSocket* CreateServerTcpSocket(
|
| const rtc::SocketAddress& local_address,
|
| - uint16 min_port,
|
| - uint16 max_port,
|
| + uint16_t min_port,
|
| + uint16_t max_port,
|
| int opts) override;
|
| rtc::AsyncPacketSocket* CreateClientTcpSocket(
|
| const rtc::SocketAddress& local_address,
|
|
|