| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef NET_SOCKET_FUZZED_SOCKET_FACTORY_H | 5 #ifndef NET_SOCKET_FUZZED_SOCKET_FACTORY_H_ |
| 6 #define NET_SOCKET_FUZZED_SOCKET_FACTORY_H | 6 #define NET_SOCKET_FUZZED_SOCKET_FACTORY_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "net/socket/client_socket_factory.h" | 11 #include "net/socket/client_socket_factory.h" |
| 12 | 12 |
| 13 namespace net { | 13 namespace net { |
| 14 | 14 |
| 15 class FuzzedDataProvider; | 15 class FuzzedDataProvider; |
| 16 | 16 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 void ClearSSLSessionCache() override; | 54 void ClearSSLSessionCache() override; |
| 55 | 55 |
| 56 private: | 56 private: |
| 57 FuzzedDataProvider* data_provider_; | 57 FuzzedDataProvider* data_provider_; |
| 58 | 58 |
| 59 DISALLOW_COPY_AND_ASSIGN(FuzzedSocketFactory); | 59 DISALLOW_COPY_AND_ASSIGN(FuzzedSocketFactory); |
| 60 }; | 60 }; |
| 61 | 61 |
| 62 } // namespace net | 62 } // namespace net |
| 63 | 63 |
| 64 #endif // NET_SOCKET_FUZZED_SOCKET_FACTORY_H | 64 #endif // NET_SOCKET_FUZZED_SOCKET_FACTORY_H_ |
| OLD | NEW |