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

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

Issue 6990036: Deciding best connection to schedule requests on based on cwnd and idle time (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Reuploading from google.com account 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
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 <cstdlib> 7 #include <cstdlib>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 } 329 }
330 330
331 bool FakeSSLClientSocket::WasEverUsed() const { 331 bool FakeSSLClientSocket::WasEverUsed() const {
332 return transport_socket_->WasEverUsed(); 332 return transport_socket_->WasEverUsed();
333 } 333 }
334 334
335 bool FakeSSLClientSocket::UsingTCPFastOpen() const { 335 bool FakeSSLClientSocket::UsingTCPFastOpen() const {
336 return transport_socket_->UsingTCPFastOpen(); 336 return transport_socket_->UsingTCPFastOpen();
337 } 337 }
338 338
339 int64 FakeSSLClientSocket::NumBytesRead() const {
340 return transport_socket_->NumBytesRead();
341 }
342
343 int FakeSSLClientSocket::GetConnectTimeMicros() const {
344 return transport_socket_->GetConnectTimeMicros();
345 }
346
339 } // namespace notifier 347 } // namespace notifier
OLDNEW
« no previous file with comments | « jingle/notifier/base/fake_ssl_client_socket.h ('k') | jingle/notifier/base/proxy_resolving_client_socket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698