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

Side by Side Diff: jingle/glue/fake_ssl_client_socket.cc

Issue 2351513002: net: rename BoundNetLog to NetLogWithSource (Closed)
Patch Set: one more fix, content bound_net_log_ Created 4 years, 2 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
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 #include "jingle/glue/fake_ssl_client_socket.h" 5 #include "jingle/glue/fake_ssl_client_socket.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 #include <cstdlib> 9 #include <cstdlib>
10 #include <utility> 10 #include <utility>
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 } 308 }
309 309
310 int FakeSSLClientSocket::GetPeerAddress(net::IPEndPoint* address) const { 310 int FakeSSLClientSocket::GetPeerAddress(net::IPEndPoint* address) const {
311 return transport_socket_->GetPeerAddress(address); 311 return transport_socket_->GetPeerAddress(address);
312 } 312 }
313 313
314 int FakeSSLClientSocket::GetLocalAddress(net::IPEndPoint* address) const { 314 int FakeSSLClientSocket::GetLocalAddress(net::IPEndPoint* address) const {
315 return transport_socket_->GetLocalAddress(address); 315 return transport_socket_->GetLocalAddress(address);
316 } 316 }
317 317
318 const net::BoundNetLog& FakeSSLClientSocket::NetLog() const { 318 const net::NetLogWithSource& FakeSSLClientSocket::NetLog() const {
319 return transport_socket_->NetLog(); 319 return transport_socket_->NetLog();
320 } 320 }
321 321
322 void FakeSSLClientSocket::SetSubresourceSpeculation() { 322 void FakeSSLClientSocket::SetSubresourceSpeculation() {
323 transport_socket_->SetSubresourceSpeculation(); 323 transport_socket_->SetSubresourceSpeculation();
324 } 324 }
325 325
326 void FakeSSLClientSocket::SetOmniboxSpeculation() { 326 void FakeSSLClientSocket::SetOmniboxSpeculation() {
327 transport_socket_->SetOmniboxSpeculation(); 327 transport_socket_->SetOmniboxSpeculation();
328 } 328 }
(...skipping 18 matching lines...) Expand all
347 net::ConnectionAttempts* out) const { 347 net::ConnectionAttempts* out) const {
348 out->clear(); 348 out->clear();
349 } 349 }
350 350
351 int64_t FakeSSLClientSocket::GetTotalReceivedBytes() const { 351 int64_t FakeSSLClientSocket::GetTotalReceivedBytes() const {
352 NOTIMPLEMENTED(); 352 NOTIMPLEMENTED();
353 return 0; 353 return 0;
354 } 354 }
355 355
356 } // namespace jingle_glue 356 } // namespace jingle_glue
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698