| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/browser/renderer_host/p2p/socket_host_test_utils.h" | 5 #include "content/browser/renderer_host/p2p/socket_host_test_utils.h" |
| 6 | 6 |
| 7 #include "base/sys_byteorder.h" | 7 #include "base/sys_byteorder.h" |
| 8 #include "base/thread_task_runner_handle.h" | 8 #include "base/thread_task_runner_handle.h" |
| 9 #include "net/base/completion_callback.h" | 9 #include "net/base/completion_callback.h" |
| 10 #include "net/base/io_buffer.h" | 10 #include "net/base/io_buffer.h" |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 const net::CompletionCallback& callback) { | 96 const net::CompletionCallback& callback) { |
| 97 write_pending_ = false; | 97 write_pending_ = false; |
| 98 | 98 |
| 99 if (written_data_) { | 99 if (written_data_) { |
| 100 written_data_->insert(written_data_->end(), | 100 written_data_->insert(written_data_->end(), |
| 101 buf->data(), buf->data() + buf_len); | 101 buf->data(), buf->data() + buf_len); |
| 102 } | 102 } |
| 103 callback.Run(buf_len); | 103 callback.Run(buf_len); |
| 104 } | 104 } |
| 105 | 105 |
| 106 int FakeSocket::SetReceiveBufferSize(int32 size) { | 106 bool FakeSocket::SetReceiveBufferSize(int32 size) { |
| 107 NOTIMPLEMENTED(); | 107 NOTIMPLEMENTED(); |
| 108 return net::ERR_NOT_IMPLEMENTED; | 108 return false; |
| 109 } | 109 } |
| 110 | 110 bool FakeSocket::SetSendBufferSize(int32 size) { |
| 111 int FakeSocket::SetSendBufferSize(int32 size) { | |
| 112 NOTIMPLEMENTED(); | 111 NOTIMPLEMENTED(); |
| 113 return net::ERR_NOT_IMPLEMENTED; | 112 return false; |
| 114 } | 113 } |
| 115 | 114 |
| 116 int FakeSocket::Connect(const net::CompletionCallback& callback) { | 115 int FakeSocket::Connect(const net::CompletionCallback& callback) { |
| 117 return 0; | 116 return 0; |
| 118 } | 117 } |
| 119 | 118 |
| 120 void FakeSocket::Disconnect() { | 119 void FakeSocket::Disconnect() { |
| 121 NOTREACHED(); | 120 NOTREACHED(); |
| 122 } | 121 } |
| 123 | 122 |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 | 201 |
| 203 void CreateStunError(std::vector<char>* packet) { | 202 void CreateStunError(std::vector<char>* packet) { |
| 204 CreateStunPacket(packet, kStunBindingError); | 203 CreateStunPacket(packet, kStunBindingError); |
| 205 } | 204 } |
| 206 | 205 |
| 207 net::IPEndPoint ParseAddress(const std::string ip_str, int port) { | 206 net::IPEndPoint ParseAddress(const std::string ip_str, int port) { |
| 208 net::IPAddressNumber ip; | 207 net::IPAddressNumber ip; |
| 209 EXPECT_TRUE(net::ParseIPLiteralToNumber(ip_str, &ip)); | 208 EXPECT_TRUE(net::ParseIPLiteralToNumber(ip_str, &ip)); |
| 210 return net::IPEndPoint(ip, port); | 209 return net::IPEndPoint(ip, port); |
| 211 } | 210 } |
| OLD | NEW |