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

Side by Side Diff: content/browser/renderer_host/p2p/socket_host_test_utils.h

Issue 10491007: fixed issue 128383 - replace GetPeerAddress(AddressList* address) with GetPeerAddress(IPEndPoint* a… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: PLT Created 8 years, 6 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_TEST_UTILS_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_TEST_UTILS_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_TEST_UTILS_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_TEST_UTILS_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/sys_byteorder.h" 10 #include "base/sys_byteorder.h"
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 virtual int Read(net::IOBuffer* buf, int buf_len, 59 virtual int Read(net::IOBuffer* buf, int buf_len,
60 const net::CompletionCallback& callback) OVERRIDE; 60 const net::CompletionCallback& callback) OVERRIDE;
61 virtual int Write(net::IOBuffer* buf, int buf_len, 61 virtual int Write(net::IOBuffer* buf, int buf_len,
62 const net::CompletionCallback& callback) OVERRIDE; 62 const net::CompletionCallback& callback) OVERRIDE;
63 virtual bool SetReceiveBufferSize(int32 size) OVERRIDE; 63 virtual bool SetReceiveBufferSize(int32 size) OVERRIDE;
64 virtual bool SetSendBufferSize(int32 size) OVERRIDE; 64 virtual bool SetSendBufferSize(int32 size) OVERRIDE;
65 virtual int Connect(const net::CompletionCallback& callback) OVERRIDE; 65 virtual int Connect(const net::CompletionCallback& callback) OVERRIDE;
66 virtual void Disconnect() OVERRIDE; 66 virtual void Disconnect() OVERRIDE;
67 virtual bool IsConnected() const OVERRIDE; 67 virtual bool IsConnected() const OVERRIDE;
68 virtual bool IsConnectedAndIdle() const OVERRIDE; 68 virtual bool IsConnectedAndIdle() const OVERRIDE;
69 virtual int GetPeerAddress(net::AddressList* address) const OVERRIDE; 69 virtual int GetPeerAddress(net::IPEndPoint* address) const OVERRIDE;
70 virtual int GetLocalAddress(net::IPEndPoint* address) const OVERRIDE; 70 virtual int GetLocalAddress(net::IPEndPoint* address) const OVERRIDE;
71 virtual const net::BoundNetLog& NetLog() const OVERRIDE; 71 virtual const net::BoundNetLog& NetLog() const OVERRIDE;
72 virtual void SetSubresourceSpeculation() OVERRIDE; 72 virtual void SetSubresourceSpeculation() OVERRIDE;
73 virtual void SetOmniboxSpeculation() OVERRIDE; 73 virtual void SetOmniboxSpeculation() OVERRIDE;
74 virtual bool WasEverUsed() const OVERRIDE; 74 virtual bool WasEverUsed() const OVERRIDE;
75 virtual bool UsingTCPFastOpen() const OVERRIDE; 75 virtual bool UsingTCPFastOpen() const OVERRIDE;
76 virtual int64 NumBytesRead() const OVERRIDE; 76 virtual int64 NumBytesRead() const OVERRIDE;
77 virtual base::TimeDelta GetConnectTimeMicros() const OVERRIDE; 77 virtual base::TimeDelta GetConnectTimeMicros() const OVERRIDE;
78 virtual net::NextProto GetNegotiatedProtocol() const OVERRIDE; 78 virtual net::NextProto GetNegotiatedProtocol() const OVERRIDE;
79 79
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 } 173 }
174 174
175 bool FakeSocket::IsConnected() const { 175 bool FakeSocket::IsConnected() const {
176 return true; 176 return true;
177 } 177 }
178 178
179 bool FakeSocket::IsConnectedAndIdle() const { 179 bool FakeSocket::IsConnectedAndIdle() const {
180 return false; 180 return false;
181 } 181 }
182 182
183 int FakeSocket::GetPeerAddress(net::AddressList* address) const { 183 int FakeSocket::GetPeerAddress(net::IPEndPoint* address) const {
184 *address = net::AddressList::CreateFromIPAddress(peer_address_.address(), 184 *address = net::IPEndPoint(peer_address_.address(),
szym 2012/06/07 02:42:47 Simply: *address = peer_address_;
185 peer_address_.port()); 185 peer_address_.port());
186 return net::OK; 186 return net::OK;
187 } 187 }
188 188
189 int FakeSocket::GetLocalAddress(net::IPEndPoint* address) const { 189 int FakeSocket::GetLocalAddress(net::IPEndPoint* address) const {
190 *address = local_address_; 190 *address = local_address_;
191 return net::OK; 191 return net::OK;
192 } 192 }
193 193
194 const net::BoundNetLog& FakeSocket::NetLog() const { 194 const net::BoundNetLog& FakeSocket::NetLog() const {
195 NOTREACHED(); 195 NOTREACHED();
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
279 return false; 279 return false;
280 P2PMsg_OnIncomingTcpConnection::Param params; 280 P2PMsg_OnIncomingTcpConnection::Param params;
281 P2PMsg_OnIncomingTcpConnection::Read( 281 P2PMsg_OnIncomingTcpConnection::Read(
282 arg, &params); 282 arg, &params);
283 return params.b == address; 283 return params.b == address;
284 } 284 }
285 285
286 } // namespace 286 } // namespace
287 287
288 #endif // CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_TEST_UTILS_H_ 288 #endif // CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_TEST_UTILS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698