| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ | 5 #ifndef CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ |
| 6 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ | 6 #define CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/hash_tables.h" | 10 #include "base/hash_tables.h" |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 mutable scoped_ptr<net::HttpTransactionFactory> main_http_factory_; | 125 mutable scoped_ptr<net::HttpTransactionFactory> main_http_factory_; |
| 126 mutable scoped_ptr<net::HttpTransactionFactory> media_http_factory_; | 126 mutable scoped_ptr<net::HttpTransactionFactory> media_http_factory_; |
| 127 | 127 |
| 128 // One HttpTransactionFactory per isolated app. | 128 // One HttpTransactionFactory per isolated app. |
| 129 mutable HttpTransactionFactoryMap app_http_factory_map_; | 129 mutable HttpTransactionFactoryMap app_http_factory_map_; |
| 130 | 130 |
| 131 // Parameters needed for isolated apps. | 131 // Parameters needed for isolated apps. |
| 132 FilePath app_path_; | 132 FilePath app_path_; |
| 133 mutable bool clear_local_state_on_exit_; | 133 mutable bool clear_local_state_on_exit_; |
| 134 | 134 |
| 135 mutable bool safe_browsing_enabled_; |
| 136 |
| 135 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData); | 137 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData); |
| 136 }; | 138 }; |
| 137 | 139 |
| 138 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ | 140 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ |
| OLD | NEW |