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

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

Issue 15662008: Make net and ipc explicitly use the base namespace for Values. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | « net/socket/ssl_error_params.cc ('k') | net/spdy/spdy_header_block.cc » ('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) 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 "net/socket/transport_client_socket_pool.h" 5 #include "net/socket/transport_client_socket_pool.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 } 451 }
452 452
453 void TransportClientSocketPool::AddLayeredPool(LayeredPool* layered_pool) { 453 void TransportClientSocketPool::AddLayeredPool(LayeredPool* layered_pool) {
454 base_.AddLayeredPool(layered_pool); 454 base_.AddLayeredPool(layered_pool);
455 } 455 }
456 456
457 void TransportClientSocketPool::RemoveLayeredPool(LayeredPool* layered_pool) { 457 void TransportClientSocketPool::RemoveLayeredPool(LayeredPool* layered_pool) {
458 base_.RemoveLayeredPool(layered_pool); 458 base_.RemoveLayeredPool(layered_pool);
459 } 459 }
460 460
461 DictionaryValue* TransportClientSocketPool::GetInfoAsValue( 461 base::DictionaryValue* TransportClientSocketPool::GetInfoAsValue(
462 const std::string& name, 462 const std::string& name,
463 const std::string& type, 463 const std::string& type,
464 bool include_nested_pools) const { 464 bool include_nested_pools) const {
465 return base_.GetInfoAsValue(name, type); 465 return base_.GetInfoAsValue(name, type);
466 } 466 }
467 467
468 base::TimeDelta TransportClientSocketPool::ConnectionTimeout() const { 468 base::TimeDelta TransportClientSocketPool::ConnectionTimeout() const {
469 return base_.ConnectionTimeout(); 469 return base_.ConnectionTimeout();
470 } 470 }
471 471
472 ClientSocketPoolHistograms* TransportClientSocketPool::histograms() const { 472 ClientSocketPoolHistograms* TransportClientSocketPool::histograms() const {
473 return base_.histograms(); 473 return base_.histograms();
474 } 474 }
475 475
476 } // namespace net 476 } // namespace net
OLDNEW
« no previous file with comments | « net/socket/ssl_error_params.cc ('k') | net/spdy/spdy_header_block.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698