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 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
300 // One URLRequestContext per isolated app for main and media requests. | 300 // One URLRequestContext per isolated app for main and media requests. |
301 mutable URLRequestContextMap app_request_context_map_; | 301 mutable URLRequestContextMap app_request_context_map_; |
302 | 302 |
303 mutable scoped_refptr<content_settings::CookieSettings> cookie_settings_; | 303 mutable scoped_refptr<content_settings::CookieSettings> cookie_settings_; |
304 | 304 |
305 mutable scoped_refptr<HostContentSettingsMap> host_content_settings_map_; | 305 mutable scoped_refptr<HostContentSettingsMap> host_content_settings_map_; |
306 | 306 |
307 mutable std::unique_ptr<IOSChromeHttpUserAgentSettings> | 307 mutable std::unique_ptr<IOSChromeHttpUserAgentSettings> |
308 chrome_http_user_agent_settings_; | 308 chrome_http_user_agent_settings_; |
309 | 309 |
310 // TODO(jhawkins): Remove once crbug.com/102004 is fixed. | |
311 bool initialized_on_UI_thread_; | |
312 | |
313 const ios::ChromeBrowserStateType browser_state_type_; | 310 const ios::ChromeBrowserStateType browser_state_type_; |
314 | 311 |
315 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserStateIOData); | 312 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserStateIOData); |
316 }; | 313 }; |
317 | 314 |
318 #endif // IOS_CHROME_BROWSER_BROWSER_STATE_CHROME_BROWSER_STATE_IO_DATA_H_ | 315 #endif // IOS_CHROME_BROWSER_BROWSER_STATE_CHROME_BROWSER_STATE_IO_DATA_H_ |
OLD | NEW |