OLD | NEW |
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/mock_client_socket_pool_manager.h" | 5 #include "net/socket/mock_client_socket_pool_manager.h" |
6 | 6 |
7 #include "base/values.h" | 7 #include "base/values.h" |
8 #include "net/http/http_proxy_client_socket_pool.h" | 8 #include "net/http/http_proxy_client_socket_pool.h" |
9 #include "net/socket/socks_client_socket_pool.h" | 9 #include "net/socket/socks_client_socket_pool.h" |
10 #include "net/socket/ssl_client_socket_pool.h" | 10 #include "net/socket/ssl_client_socket_pool.h" |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 return it->second.get(); | 86 return it->second.get(); |
87 return nullptr; | 87 return nullptr; |
88 } | 88 } |
89 | 89 |
90 std::unique_ptr<base::Value> | 90 std::unique_ptr<base::Value> |
91 MockClientSocketPoolManager::SocketPoolInfoToValue() const { | 91 MockClientSocketPoolManager::SocketPoolInfoToValue() const { |
92 NOTIMPLEMENTED(); | 92 NOTIMPLEMENTED(); |
93 return std::unique_ptr<base::Value>(nullptr); | 93 return std::unique_ptr<base::Value>(nullptr); |
94 } | 94 } |
95 | 95 |
| 96 void MockClientSocketPoolManager::DumpMemoryStats( |
| 97 base::trace_event::ProcessMemoryDump* pmd, |
| 98 const std::string& parent_dump_absolute_name) const {} |
| 99 |
96 } // namespace net | 100 } // namespace net |
OLD | NEW |