Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(301)

Unified Diff: remoting/client/plugin/pepper_packet_socket_factory.cc

Issue 435823002: Revert "Update webrtc&libjingle 6774:6799." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: remoting/client/plugin/pepper_packet_socket_factory.cc
diff --git a/remoting/client/plugin/pepper_packet_socket_factory.cc b/remoting/client/plugin/pepper_packet_socket_factory.cc
index 4909f892a21a64c770aaab3198bd12be0307ef74..6669266afeab87ffaf1e3ab53529a4f527f87716 100644
--- a/remoting/client/plugin/pepper_packet_socket_factory.cc
+++ b/remoting/client/plugin/pepper_packet_socket_factory.cc
@@ -13,7 +13,7 @@
#include "ppapi/utility/completion_callback_factory.h"
#include "remoting/client/plugin/pepper_util.h"
#include "remoting/protocol/socket_util.h"
-#include "third_party/webrtc/base/asyncpacketsocket.h"
+#include "third_party/libjingle/source/talk/base/asyncpacketsocket.h"
namespace remoting {
@@ -81,30 +81,30 @@ int PepperErrorToNetError(int error) {
}
}
-class UdpPacketSocket : public rtc::AsyncPacketSocket {
+class UdpPacketSocket : public talk_base::AsyncPacketSocket {
public:
explicit UdpPacketSocket(const pp::InstanceHandle& instance);
virtual ~UdpPacketSocket();
// |min_port| and |max_port| are set to zero if the port number
// should be assigned by the OS.
- bool Init(const rtc::SocketAddress& local_address,
+ bool Init(const talk_base::SocketAddress& local_address,
int min_port,
int max_port);
- // rtc::AsyncPacketSocket interface.
- virtual rtc::SocketAddress GetLocalAddress() const OVERRIDE;
- virtual rtc::SocketAddress GetRemoteAddress() const OVERRIDE;
+ // talk_base::AsyncPacketSocket interface.
+ virtual talk_base::SocketAddress GetLocalAddress() const OVERRIDE;
+ virtual talk_base::SocketAddress GetRemoteAddress() const OVERRIDE;
virtual int Send(const void* data, size_t data_size,
- const rtc::PacketOptions& options) OVERRIDE;
+ const talk_base::PacketOptions& options) OVERRIDE;
virtual int SendTo(const void* data,
size_t data_size,
- const rtc::SocketAddress& address,
- const rtc::PacketOptions& options) OVERRIDE;
+ const talk_base::SocketAddress& address,
+ const talk_base::PacketOptions& options) OVERRIDE;
virtual int Close() OVERRIDE;
virtual State GetState() const OVERRIDE;
- virtual int GetOption(rtc::Socket::Option opt, int* value) OVERRIDE;
- virtual int SetOption(rtc::Socket::Option opt, int value) OVERRIDE;
+ virtual int GetOption(talk_base::Socket::Option opt, int* value) OVERRIDE;
+ virtual int SetOption(talk_base::Socket::Option opt, int value) OVERRIDE;
virtual int GetError() const OVERRIDE;
virtual void SetError(int error) OVERRIDE;
@@ -135,7 +135,7 @@ class UdpPacketSocket : public rtc::AsyncPacketSocket {
State state_;
int error_;
- rtc::SocketAddress local_address_;
+ talk_base::SocketAddress local_address_;
// Used to scan ports when necessary. Both values are set to 0 when
// the port number is assigned by OS.
@@ -179,7 +179,7 @@ UdpPacketSocket::~UdpPacketSocket() {
Close();
}
-bool UdpPacketSocket::Init(const rtc::SocketAddress& local_address,
+bool UdpPacketSocket::Init(const talk_base::SocketAddress& local_address,
int min_port,
int max_port) {
if (socket_.is_null()) {
@@ -239,19 +239,19 @@ void UdpPacketSocket::OnBindCompleted(int result) {
}
}
-rtc::SocketAddress UdpPacketSocket::GetLocalAddress() const {
+talk_base::SocketAddress UdpPacketSocket::GetLocalAddress() const {
DCHECK_EQ(state_, STATE_BOUND);
return local_address_;
}
-rtc::SocketAddress UdpPacketSocket::GetRemoteAddress() const {
+talk_base::SocketAddress UdpPacketSocket::GetRemoteAddress() const {
// UDP sockets are not connected - this method should never be called.
NOTREACHED();
- return rtc::SocketAddress();
+ return talk_base::SocketAddress();
}
int UdpPacketSocket::Send(const void* data, size_t data_size,
- const rtc::PacketOptions& options) {
+ const talk_base::PacketOptions& options) {
// UDP sockets are not connected - this method should never be called.
NOTREACHED();
return EWOULDBLOCK;
@@ -259,8 +259,8 @@ int UdpPacketSocket::Send(const void* data, size_t data_size,
int UdpPacketSocket::SendTo(const void* data,
size_t data_size,
- const rtc::SocketAddress& address,
- const rtc::PacketOptions& options) {
+ const talk_base::SocketAddress& address,
+ const talk_base::PacketOptions& options) {
if (state_ != STATE_BOUND) {
// TODO(sergeyu): StunPort may try to send stun request before we
// are bound. Fix that problem and change this to DCHECK.
@@ -292,16 +292,16 @@ int UdpPacketSocket::Close() {
return 0;
}
-rtc::AsyncPacketSocket::State UdpPacketSocket::GetState() const {
+talk_base::AsyncPacketSocket::State UdpPacketSocket::GetState() const {
return state_;
}
-int UdpPacketSocket::GetOption(rtc::Socket::Option opt, int* value) {
+int UdpPacketSocket::GetOption(talk_base::Socket::Option opt, int* value) {
// Options are not supported for Pepper UDP sockets.
return -1;
}
-int UdpPacketSocket::SetOption(rtc::Socket::Option opt, int value) {
+int UdpPacketSocket::SetOption(talk_base::Socket::Option opt, int value) {
// Options are not supported for Pepper UDP sockets.
return -1;
}
@@ -385,10 +385,10 @@ void UdpPacketSocket::OnReadCompleted(int result, pp::NetAddress address) {
void UdpPacketSocket::HandleReadResult(int result, pp::NetAddress address) {
if (result > 0) {
- rtc::SocketAddress socket_address;
+ talk_base::SocketAddress socket_address;
PpNetAddressToSocketAddress(address, &socket_address);
SignalReadPacket(this, &receive_buffer_[0], result, socket_address,
- rtc::CreatePacketTime(0));
+ talk_base::CreatePacketTime(0));
} else if (result != PP_ERROR_ABORTED) {
LOG(ERROR) << "Received error when reading from UDP socket: " << result;
}
@@ -404,8 +404,8 @@ PepperPacketSocketFactory::PepperPacketSocketFactory(
PepperPacketSocketFactory::~PepperPacketSocketFactory() {
}
-rtc::AsyncPacketSocket* PepperPacketSocketFactory::CreateUdpSocket(
- const rtc::SocketAddress& local_address,
+talk_base::AsyncPacketSocket* PepperPacketSocketFactory::CreateUdpSocket(
+ const talk_base::SocketAddress& local_address,
int min_port,
int max_port) {
scoped_ptr<UdpPacketSocket> result(new UdpPacketSocket(pp_instance_));
@@ -414,8 +414,8 @@ rtc::AsyncPacketSocket* PepperPacketSocketFactory::CreateUdpSocket(
return result.release();
}
-rtc::AsyncPacketSocket* PepperPacketSocketFactory::CreateServerTcpSocket(
- const rtc::SocketAddress& local_address,
+talk_base::AsyncPacketSocket* PepperPacketSocketFactory::CreateServerTcpSocket(
+ const talk_base::SocketAddress& local_address,
int min_port,
int max_port,
int opts) {
@@ -424,10 +424,10 @@ rtc::AsyncPacketSocket* PepperPacketSocketFactory::CreateServerTcpSocket(
return NULL;
}
-rtc::AsyncPacketSocket* PepperPacketSocketFactory::CreateClientTcpSocket(
- const rtc::SocketAddress& local_address,
- const rtc::SocketAddress& remote_address,
- const rtc::ProxyInfo& proxy_info,
+talk_base::AsyncPacketSocket* PepperPacketSocketFactory::CreateClientTcpSocket(
+ const talk_base::SocketAddress& local_address,
+ const talk_base::SocketAddress& remote_address,
+ const talk_base::ProxyInfo& proxy_info,
const std::string& user_agent,
int opts) {
// We don't use TCP sockets for remoting connections.
@@ -435,7 +435,7 @@ rtc::AsyncPacketSocket* PepperPacketSocketFactory::CreateClientTcpSocket(
return NULL;
}
-rtc::AsyncResolverInterface*
+talk_base::AsyncResolverInterface*
PepperPacketSocketFactory::CreateAsyncResolver() {
NOTREACHED();
return NULL;
« no previous file with comments | « remoting/client/plugin/pepper_packet_socket_factory.h ('k') | remoting/client/plugin/pepper_port_allocator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698