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

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

Issue 7255002: Revert 90373 - Warmth of a connection (cwnd) is estimated by the amount of data written to the so... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 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
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | jingle/glue/pseudotcp_adapter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:mergeinfo
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "content/common/p2p_messages.h" 10 #include "content/common/p2p_messages.h"
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
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::AddressList* 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;
77 virtual base::TimeDelta GetConnectTimeMicros() const OVERRIDE;
78 76
79 private: 77 private:
80 bool read_pending_; 78 bool read_pending_;
81 scoped_refptr<net::IOBuffer> read_buffer_; 79 scoped_refptr<net::IOBuffer> read_buffer_;
82 int read_buffer_size_; 80 int read_buffer_size_;
83 net::CompletionCallback* read_callback_; 81 net::CompletionCallback* read_callback_;
84 82
85 std::string* written_data_; 83 std::string* written_data_;
86 std::string input_data_; 84 std::string input_data_;
87 int input_pos_; 85 int input_pos_;
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 } 202 }
205 203
206 bool FakeSocket::WasEverUsed() const { 204 bool FakeSocket::WasEverUsed() const {
207 return true; 205 return true;
208 } 206 }
209 207
210 bool FakeSocket::UsingTCPFastOpen() const { 208 bool FakeSocket::UsingTCPFastOpen() const {
211 return false; 209 return false;
212 } 210 }
213 211
214 int64 FakeSocket::NumBytesRead() const {
215 return -1;
216 }
217
218 base::TimeDelta FakeSocket::GetConnectTimeMicros() const {
219 return base::TimeDelta::FromMicroseconds(-1);
220 }
221
222 void CreateRandomPacket(std::vector<char>* packet) { 212 void CreateRandomPacket(std::vector<char>* packet) {
223 size_t size = kStunHeaderSize + rand() % 1000; 213 size_t size = kStunHeaderSize + rand() % 1000;
224 packet->resize(size); 214 packet->resize(size);
225 for (size_t i = 0; i < size; i++) { 215 for (size_t i = 0; i < size; i++) {
226 (*packet)[i] = rand() % 256; 216 (*packet)[i] = rand() % 256;
227 } 217 }
228 // Always set the first bit to ensure that generated packet is not 218 // Always set the first bit to ensure that generated packet is not
229 // valid STUN packet. 219 // valid STUN packet.
230 (*packet)[0] = (*packet)[0] | 0x80; 220 (*packet)[0] = (*packet)[0] | 0x80;
231 } 221 }
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 return false; 263 return false;
274 P2PMsg_OnIncomingTcpConnection::Param params; 264 P2PMsg_OnIncomingTcpConnection::Param params;
275 IPC::MessageWithTuple<P2PMsg_OnIncomingTcpConnection::Param>::Read( 265 IPC::MessageWithTuple<P2PMsg_OnIncomingTcpConnection::Param>::Read(
276 arg, &params); 266 arg, &params);
277 return params.b == address; 267 return params.b == address;
278 } 268 }
279 269
280 } // namespace 270 } // namespace
281 271
282 #endif // CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_TEST_UTILS_H_ 272 #endif // CONTENT_BROWSER_RENDERER_HOST_P2P_SOCKET_HOST_TEST_UTILS_H_
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | jingle/glue/pseudotcp_adapter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698