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

Side by Side Diff: jingle/notifier/base/fake_ssl_client_socket_unittest.cc

Issue 7251004: Deciding best connection to schedule requests on based on cwnd and idle time (Reopened after revert) (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Syncing to head Created 9 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 unified diff | Download patch | Annotate | Revision Log
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 #include "jingle/notifier/base/fake_ssl_client_socket.h" 5 #include "jingle/notifier/base/fake_ssl_client_socket.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 MOCK_METHOD0(Disconnect, void()); 55 MOCK_METHOD0(Disconnect, void());
56 MOCK_CONST_METHOD0(IsConnected, bool()); 56 MOCK_CONST_METHOD0(IsConnected, bool());
57 MOCK_CONST_METHOD0(IsConnectedAndIdle, bool()); 57 MOCK_CONST_METHOD0(IsConnectedAndIdle, bool());
58 MOCK_CONST_METHOD1(GetPeerAddress, int(net::AddressList*)); 58 MOCK_CONST_METHOD1(GetPeerAddress, int(net::AddressList*));
59 MOCK_CONST_METHOD1(GetLocalAddress, int(net::IPEndPoint*)); 59 MOCK_CONST_METHOD1(GetLocalAddress, int(net::IPEndPoint*));
60 MOCK_CONST_METHOD0(NetLog, const net::BoundNetLog&()); 60 MOCK_CONST_METHOD0(NetLog, const net::BoundNetLog&());
61 MOCK_METHOD0(SetSubresourceSpeculation, void()); 61 MOCK_METHOD0(SetSubresourceSpeculation, void());
62 MOCK_METHOD0(SetOmniboxSpeculation, void()); 62 MOCK_METHOD0(SetOmniboxSpeculation, void());
63 MOCK_CONST_METHOD0(WasEverUsed, bool()); 63 MOCK_CONST_METHOD0(WasEverUsed, bool());
64 MOCK_CONST_METHOD0(UsingTCPFastOpen, bool()); 64 MOCK_CONST_METHOD0(UsingTCPFastOpen, bool());
65 MOCK_CONST_METHOD0(NumBytesRead, int64());
66 MOCK_CONST_METHOD0(GetConnectTimeMicros, base::TimeDelta());
65 }; 67 };
66 68
67 // Break up |data| into a bunch of chunked MockReads/Writes and push 69 // Break up |data| into a bunch of chunked MockReads/Writes and push
68 // them onto |ops|. 70 // them onto |ops|.
69 void AddChunkedOps(base::StringPiece data, size_t chunk_size, bool async, 71 void AddChunkedOps(base::StringPiece data, size_t chunk_size, bool async,
70 std::vector<net::MockRead>* ops) { 72 std::vector<net::MockRead>* ops) {
71 DCHECK_GT(chunk_size, 0U); 73 DCHECK_GT(chunk_size, 0U);
72 size_t offset = 0; 74 size_t offset = 0;
73 while (offset < data.size()) { 75 while (offset < data.size()) {
74 size_t bounded_chunk_size = std::min(data.size() - offset, chunk_size); 76 size_t bounded_chunk_size = std::min(data.size() - offset, chunk_size);
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
332 } 334 }
333 335
334 TEST_F(FakeSSLClientSocketTest, MalformedServerHello) { 336 TEST_F(FakeSSLClientSocketTest, MalformedServerHello) {
335 RunUnsuccessfulHandshakeTest(ERR_MALFORMED_SERVER_HELLO, 337 RunUnsuccessfulHandshakeTest(ERR_MALFORMED_SERVER_HELLO,
336 VERIFY_SERVER_HELLO_ERROR); 338 VERIFY_SERVER_HELLO_ERROR);
337 } 339 }
338 340
339 } // namespace 341 } // namespace
340 342
341 } // namespace notifier 343 } // namespace notifier
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698