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

Side by Side Diff: net/socket/ssl_client_socket_pool.cc

Issue 5741001: Even more virtual method deinlining. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase (windows) Created 10 years 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 | « net/socket/ssl_client_socket_pool.h ('k') | net/url_request/url_request_http_job.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "net/socket/ssl_client_socket_pool.h" 5 #include "net/socket/ssl_client_socket_pool.h"
6 6
7 #include "base/metrics/histogram.h" 7 #include "base/metrics/histogram.h"
8 #include "base/values.h" 8 #include "base/values.h"
9 #include "net/base/net_errors.h" 9 #include "net/base/net_errors.h"
10 #include "net/base/host_port_pair.h" 10 #include "net/base/host_port_pair.h"
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 } 472 }
473 473
474 void SSLClientSocketPool::Flush() { 474 void SSLClientSocketPool::Flush() {
475 base_.Flush(); 475 base_.Flush();
476 } 476 }
477 477
478 void SSLClientSocketPool::CloseIdleSockets() { 478 void SSLClientSocketPool::CloseIdleSockets() {
479 base_.CloseIdleSockets(); 479 base_.CloseIdleSockets();
480 } 480 }
481 481
482 int SSLClientSocketPool::IdleSocketCount() const {
483 return base_.idle_socket_count();
484 }
485
482 int SSLClientSocketPool::IdleSocketCountInGroup( 486 int SSLClientSocketPool::IdleSocketCountInGroup(
483 const std::string& group_name) const { 487 const std::string& group_name) const {
484 return base_.IdleSocketCountInGroup(group_name); 488 return base_.IdleSocketCountInGroup(group_name);
485 } 489 }
486 490
487 LoadState SSLClientSocketPool::GetLoadState( 491 LoadState SSLClientSocketPool::GetLoadState(
488 const std::string& group_name, const ClientSocketHandle* handle) const { 492 const std::string& group_name, const ClientSocketHandle* handle) const {
489 return base_.GetLoadState(group_name, handle); 493 return base_.GetLoadState(group_name, handle);
490 } 494 }
491 495
(...skipping 21 matching lines...) Expand all
513 if (http_proxy_pool_) { 517 if (http_proxy_pool_) {
514 list->Append(http_proxy_pool_->GetInfoAsValue("http_proxy_pool", 518 list->Append(http_proxy_pool_->GetInfoAsValue("http_proxy_pool",
515 "http_proxy_pool", 519 "http_proxy_pool",
516 true)); 520 true));
517 } 521 }
518 dict->Set("nested_pools", list); 522 dict->Set("nested_pools", list);
519 } 523 }
520 return dict; 524 return dict;
521 } 525 }
522 526
527 base::TimeDelta SSLClientSocketPool::ConnectionTimeout() const {
528 return base_.ConnectionTimeout();
529 }
530
531 ClientSocketPoolHistograms* SSLClientSocketPool::histograms() const {
532 return base_.histograms();
533 }
534
523 } // namespace net 535 } // namespace net
OLDNEW
« no previous file with comments | « net/socket/ssl_client_socket_pool.h ('k') | net/url_request/url_request_http_job.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698