| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_ | 5 #ifndef IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_ |
| 6 #define IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_ | 6 #define IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 #include "components/prefs/pref_member.h" | 22 #include "components/prefs/pref_member.h" |
| 23 #include "components/ssl_config/ssl_config_service_manager.h" | 23 #include "components/ssl_config/ssl_config_service_manager.h" |
| 24 #include "ios/web/public/web_thread_delegate.h" | 24 #include "ios/web/public/web_thread_delegate.h" |
| 25 #include "net/base/network_change_notifier.h" | 25 #include "net/base/network_change_notifier.h" |
| 26 #include "net/http/http_network_session.h" | 26 #include "net/http/http_network_session.h" |
| 27 | 27 |
| 28 class PrefProxyConfigTracker; | 28 class PrefProxyConfigTracker; |
| 29 class PrefService; | 29 class PrefService; |
| 30 class SystemURLRequestContextGetter; | 30 class SystemURLRequestContextGetter; |
| 31 | 31 |
| 32 namespace base { | |
| 33 class CommandLine; | |
| 34 } // namespace base | |
| 35 | |
| 36 namespace net { | 32 namespace net { |
| 37 class CTPolicyEnforcer; | 33 class CTPolicyEnforcer; |
| 38 class CertVerifier; | 34 class CertVerifier; |
| 39 class ChannelIDService; | 35 class ChannelIDService; |
| 40 class CookieStore; | 36 class CookieStore; |
| 41 class CTVerifier; | 37 class CTVerifier; |
| 42 class HostResolver; | 38 class HostResolver; |
| 43 class HttpAuthHandlerFactory; | 39 class HttpAuthHandlerFactory; |
| 44 class HttpAuthPreferences; | 40 class HttpAuthPreferences; |
| 45 class HttpServerProperties; | 41 class HttpServerProperties; |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 229 system_url_request_context_getter_; | 225 system_url_request_context_getter_; |
| 230 | 226 |
| 231 const base::TimeTicks creation_time_; | 227 const base::TimeTicks creation_time_; |
| 232 | 228 |
| 233 base::WeakPtrFactory<IOSChromeIOThread> weak_factory_; | 229 base::WeakPtrFactory<IOSChromeIOThread> weak_factory_; |
| 234 | 230 |
| 235 DISALLOW_COPY_AND_ASSIGN(IOSChromeIOThread); | 231 DISALLOW_COPY_AND_ASSIGN(IOSChromeIOThread); |
| 236 }; | 232 }; |
| 237 | 233 |
| 238 #endif // IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_ | 234 #endif // IOS_CHROME_BROWSER_IOS_CHROME_IO_THREAD_H_ |
| OLD | NEW |