| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/containers/hash_tables.h" | 9 #include "base/containers/hash_tables.h" |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 net::URLRequestContext* InitializeAppRequestContext( | 172 net::URLRequestContext* InitializeAppRequestContext( |
| 173 net::URLRequestContext* main_context, | 173 net::URLRequestContext* main_context, |
| 174 const StoragePartitionDescriptor& partition_descriptor, | 174 const StoragePartitionDescriptor& partition_descriptor, |
| 175 std::unique_ptr<ProtocolHandlerRegistry::JobInterceptorFactory> | 175 std::unique_ptr<ProtocolHandlerRegistry::JobInterceptorFactory> |
| 176 protocol_handler_interceptor, | 176 protocol_handler_interceptor, |
| 177 content::ProtocolHandlerMap* protocol_handlers, | 177 content::ProtocolHandlerMap* protocol_handlers, |
| 178 content::URLRequestInterceptorScopedVector request_interceptors) | 178 content::URLRequestInterceptorScopedVector request_interceptors) |
| 179 const override; | 179 const override; |
| 180 net::URLRequestContext* InitializeMediaRequestContext( | 180 net::URLRequestContext* InitializeMediaRequestContext( |
| 181 net::URLRequestContext* original_context, | 181 net::URLRequestContext* original_context, |
| 182 const StoragePartitionDescriptor& partition_descriptor) const override; | 182 const StoragePartitionDescriptor& partition_descriptor, |
| 183 const std::string& name) const override; |
| 183 net::URLRequestContext* AcquireMediaRequestContext() const override; | 184 net::URLRequestContext* AcquireMediaRequestContext() const override; |
| 184 net::URLRequestContext* AcquireIsolatedAppRequestContext( | 185 net::URLRequestContext* AcquireIsolatedAppRequestContext( |
| 185 net::URLRequestContext* main_context, | 186 net::URLRequestContext* main_context, |
| 186 const StoragePartitionDescriptor& partition_descriptor, | 187 const StoragePartitionDescriptor& partition_descriptor, |
| 187 std::unique_ptr<ProtocolHandlerRegistry::JobInterceptorFactory> | 188 std::unique_ptr<ProtocolHandlerRegistry::JobInterceptorFactory> |
| 188 protocol_handler_interceptor, | 189 protocol_handler_interceptor, |
| 189 content::ProtocolHandlerMap* protocol_handlers, | 190 content::ProtocolHandlerMap* protocol_handlers, |
| 190 content::URLRequestInterceptorScopedVector request_interceptors) | 191 content::URLRequestInterceptorScopedVector request_interceptors) |
| 191 const override; | 192 const override; |
| 192 net::URLRequestContext* AcquireIsolatedMediaRequestContext( | 193 net::URLRequestContext* AcquireIsolatedMediaRequestContext( |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 227 | 228 |
| 228 // Parameters needed for isolated apps. | 229 // Parameters needed for isolated apps. |
| 229 base::FilePath profile_path_; | 230 base::FilePath profile_path_; |
| 230 int app_cache_max_size_; | 231 int app_cache_max_size_; |
| 231 int app_media_cache_max_size_; | 232 int app_media_cache_max_size_; |
| 232 | 233 |
| 233 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData); | 234 DISALLOW_COPY_AND_ASSIGN(ProfileImplIOData); |
| 234 }; | 235 }; |
| 235 | 236 |
| 236 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ | 237 #endif // CHROME_BROWSER_PROFILES_PROFILE_IMPL_IO_DATA_H_ |
| OLD | NEW |