| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 IOS_CRNET_CRNET_ENVIRONMENT_H_ | 5 #ifndef IOS_CRNET_CRNET_ENVIRONMENT_H_ |
| 6 #define IOS_CRNET_CRNET_ENVIRONMENT_H_ | 6 #define IOS_CRNET_CRNET_ENVIRONMENT_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/message_loop/message_loop.h" | 12 #include "base/message_loop/message_loop.h" |
| 13 #include "base/synchronization/waitable_event.h" | 13 #include "base/synchronization/waitable_event.h" |
| 14 #include "base/threading/thread.h" | 14 #include "base/threading/thread.h" |
| 15 #import "ios/crnet/CrNet.h" | 15 #import "ios/crnet/CrNet.h" |
| 16 #include "net/url_request/url_request.h" | 16 #include "net/url_request/url_request.h" |
| 17 #include "net/url_request/url_request_context.h" | 17 #include "net/url_request/url_request_context.h" |
| 18 | 18 |
| 19 class JsonPrefStore; | 19 class JsonPrefStore; |
| 20 | 20 |
| 21 namespace net { | 21 namespace net { |
| 22 class CookieStore; | 22 class CookieStore; |
| 23 class HttpCache; | |
| 24 class NetworkChangeNotifier; | 23 class NetworkChangeNotifier; |
| 25 class NetLog; | 24 class NetLog; |
| 26 class ProxyConfigService; | 25 class ProxyConfigService; |
| 27 class SdchManager; | 26 class SdchManager; |
| 28 class SdchOwner; | 27 class SdchOwner; |
| 29 class URLRequestContextGetter; | 28 class URLRequestContextGetter; |
| 30 class WriteToFileNetLogObserver; | 29 class WriteToFileNetLogObserver; |
| 31 } | 30 } |
| 32 | 31 |
| 33 class CrNetHttpProtocolHandlerDelegate; | 32 class CrNetHttpProtocolHandlerDelegate; |
| (...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 http_protocol_handler_delegate_; | 158 http_protocol_handler_delegate_; |
| 160 std::string user_agent_; | 159 std::string user_agent_; |
| 161 bool user_agent_partial_; | 160 bool user_agent_partial_; |
| 162 std::unique_ptr<net::NetLog> net_log_; | 161 std::unique_ptr<net::NetLog> net_log_; |
| 163 std::unique_ptr<net::WriteToFileNetLogObserver> net_log_observer_; | 162 std::unique_ptr<net::WriteToFileNetLogObserver> net_log_observer_; |
| 164 | 163 |
| 165 DISALLOW_COPY_AND_ASSIGN(CrNetEnvironment); | 164 DISALLOW_COPY_AND_ASSIGN(CrNetEnvironment); |
| 166 }; | 165 }; |
| 167 | 166 |
| 168 #endif // IOS_CRNET_CRNET_ENVIRONMENT_H_ | 167 #endif // IOS_CRNET_CRNET_ENVIRONMENT_H_ |
| OLD | NEW |