| 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_BROWSER_STATE_CHROME_BROWSER_STATE_IO_DATA_H_ | 5 #ifndef IOS_CHROME_BROWSER_BROWSER_STATE_CHROME_BROWSER_STATE_IO_DATA_H_ |
| 6 #define IOS_CHROME_BROWSER_BROWSER_STATE_CHROME_BROWSER_STATE_IO_DATA_H_ | 6 #define IOS_CHROME_BROWSER_BROWSER_STATE_CHROME_BROWSER_STATE_IO_DATA_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 namespace content_settings { | 35 namespace content_settings { |
| 36 class CookieSettings; | 36 class CookieSettings; |
| 37 } | 37 } |
| 38 | 38 |
| 39 namespace ios { | 39 namespace ios { |
| 40 class ChromeBrowserState; | 40 class ChromeBrowserState; |
| 41 enum class ChromeBrowserStateType; | 41 enum class ChromeBrowserStateType; |
| 42 } | 42 } |
| 43 | 43 |
| 44 namespace net { | 44 namespace net { |
| 45 class CertVerifier; | |
| 46 class ChannelIDService; | 45 class ChannelIDService; |
| 47 class CookieStore; | 46 class CookieStore; |
| 48 class HttpServerProperties; | 47 class HttpServerProperties; |
| 49 class HttpTransactionFactory; | 48 class HttpTransactionFactory; |
| 50 class ProxyConfigService; | 49 class ProxyConfigService; |
| 51 class ProxyService; | 50 class ProxyService; |
| 52 class ReportSender; | 51 class ReportSender; |
| 53 class ServerBoundCertService; | |
| 54 class SSLConfigService; | 52 class SSLConfigService; |
| 55 class TransportSecurityPersister; | 53 class TransportSecurityPersister; |
| 56 class TransportSecurityState; | 54 class TransportSecurityState; |
| 57 class URLRequestJobFactoryImpl; | 55 class URLRequestJobFactoryImpl; |
| 58 } // namespace net | 56 } // namespace net |
| 59 | 57 |
| 60 // Conceptually speaking, the ChromeBrowserStateIOData represents data that | 58 // Conceptually speaking, the ChromeBrowserStateIOData represents data that |
| 61 // lives on the IO thread that is owned by a ChromeBrowserState, such as, but | 59 // lives on the IO thread that is owned by a ChromeBrowserState, such as, but |
| 62 // not limited to, network objects like CookieMonster, HttpTransactionFactory, | 60 // not limited to, network objects like CookieMonster, HttpTransactionFactory, |
| 63 // etc. | 61 // etc. |
| (...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 | 303 |
| 306 mutable std::unique_ptr<IOSChromeHttpUserAgentSettings> | 304 mutable std::unique_ptr<IOSChromeHttpUserAgentSettings> |
| 307 chrome_http_user_agent_settings_; | 305 chrome_http_user_agent_settings_; |
| 308 | 306 |
| 309 const ios::ChromeBrowserStateType browser_state_type_; | 307 const ios::ChromeBrowserStateType browser_state_type_; |
| 310 | 308 |
| 311 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserStateIOData); | 309 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserStateIOData); |
| 312 }; | 310 }; |
| 313 | 311 |
| 314 #endif // IOS_CHROME_BROWSER_BROWSER_STATE_CHROME_BROWSER_STATE_IO_DATA_H_ | 312 #endif // IOS_CHROME_BROWSER_BROWSER_STATE_CHROME_BROWSER_STATE_IO_DATA_H_ |
| OLD | NEW |