| 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 COMPONENTS_CRONET_IOS_CRONET_ENVIRONMENT_H_ | 5 #ifndef COMPONENTS_CRONET_IOS_CRONET_ENVIRONMENT_H_ |
| 6 #define COMPONENTS_CRONET_IOS_CRONET_ENVIRONMENT_H_ | 6 #define COMPONENTS_CRONET_IOS_CRONET_ENVIRONMENT_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 #include "net/url_request/url_request_context_getter.h" | 21 #include "net/url_request/url_request_context_getter.h" |
| 22 | 22 |
| 23 class JsonPrefStore; | 23 class JsonPrefStore; |
| 24 | 24 |
| 25 namespace base { | 25 namespace base { |
| 26 class WaitableEvent; | 26 class WaitableEvent; |
| 27 } // namespace base | 27 } // namespace base |
| 28 | 28 |
| 29 namespace net { | 29 namespace net { |
| 30 class CookieStore; | 30 class CookieStore; |
| 31 class HttpCache; | |
| 32 class NetworkChangeNotifier; | |
| 33 class NetLog; | 31 class NetLog; |
| 34 class ProxyConfigService; | 32 class ProxyConfigService; |
| 35 class WriteToFileNetLogObserver; | 33 class WriteToFileNetLogObserver; |
| 36 } // namespace net | 34 } // namespace net |
| 37 | 35 |
| 38 namespace cronet { | 36 namespace cronet { |
| 39 // CronetEnvironment contains all the network stack configuration | 37 // CronetEnvironment contains all the network stack configuration |
| 40 // and initialization. | 38 // and initialization. |
| 41 class CronetEnvironment { | 39 class CronetEnvironment { |
| 42 public: | 40 public: |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 bool user_agent_partial_; | 144 bool user_agent_partial_; |
| 147 std::unique_ptr<net::NetLog> net_log_; | 145 std::unique_ptr<net::NetLog> net_log_; |
| 148 std::unique_ptr<net::WriteToFileNetLogObserver> net_log_observer_; | 146 std::unique_ptr<net::WriteToFileNetLogObserver> net_log_observer_; |
| 149 | 147 |
| 150 DISALLOW_COPY_AND_ASSIGN(CronetEnvironment); | 148 DISALLOW_COPY_AND_ASSIGN(CronetEnvironment); |
| 151 }; | 149 }; |
| 152 | 150 |
| 153 } // namespace cronet | 151 } // namespace cronet |
| 154 | 152 |
| 155 #endif // COMPONENTS_CRONET_IOS_CRONET_ENVIRONMENT_H_ | 153 #endif // COMPONENTS_CRONET_IOS_CRONET_ENVIRONMENT_H_ |
| OLD | NEW |