| 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_OFF_THE_RECORD_PROFILE_IO_DATA_H_ | 5 #ifndef CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IO_DATA_H_ |
| 6 #define CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IO_DATA_H_ | 6 #define CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IO_DATA_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 net::URLRequestContext* main_context, | 120 net::URLRequestContext* main_context, |
| 121 const StoragePartitionDescriptor& partition_descriptor, | 121 const StoragePartitionDescriptor& partition_descriptor, |
| 122 std::unique_ptr<ProtocolHandlerRegistry::JobInterceptorFactory> | 122 std::unique_ptr<ProtocolHandlerRegistry::JobInterceptorFactory> |
| 123 protocol_handler_interceptor, | 123 protocol_handler_interceptor, |
| 124 content::ProtocolHandlerMap* protocol_handlers, | 124 content::ProtocolHandlerMap* protocol_handlers, |
| 125 content::URLRequestInterceptorScopedVector request_interceptors) | 125 content::URLRequestInterceptorScopedVector request_interceptors) |
| 126 const override; | 126 const override; |
| 127 net::URLRequestContext* InitializeMediaRequestContext( | 127 net::URLRequestContext* InitializeMediaRequestContext( |
| 128 net::URLRequestContext* original_context, | 128 net::URLRequestContext* original_context, |
| 129 const StoragePartitionDescriptor& partition_descriptor, | 129 const StoragePartitionDescriptor& partition_descriptor, |
| 130 const std::string& name) const override; | 130 const char* name) const override; |
| 131 net::URLRequestContext* AcquireMediaRequestContext() const override; | 131 net::URLRequestContext* AcquireMediaRequestContext() const override; |
| 132 net::URLRequestContext* AcquireIsolatedAppRequestContext( | 132 net::URLRequestContext* AcquireIsolatedAppRequestContext( |
| 133 net::URLRequestContext* main_context, | 133 net::URLRequestContext* main_context, |
| 134 const StoragePartitionDescriptor& partition_descriptor, | 134 const StoragePartitionDescriptor& partition_descriptor, |
| 135 std::unique_ptr<ProtocolHandlerRegistry::JobInterceptorFactory> | 135 std::unique_ptr<ProtocolHandlerRegistry::JobInterceptorFactory> |
| 136 protocol_handler_interceptor, | 136 protocol_handler_interceptor, |
| 137 content::ProtocolHandlerMap* protocol_handlers, | 137 content::ProtocolHandlerMap* protocol_handlers, |
| 138 content::URLRequestInterceptorScopedVector request_interceptors) | 138 content::URLRequestInterceptorScopedVector request_interceptors) |
| 139 const override; | 139 const override; |
| 140 net::URLRequestContext* AcquireIsolatedMediaRequestContext( | 140 net::URLRequestContext* AcquireIsolatedMediaRequestContext( |
| 141 net::URLRequestContext* app_context, | 141 net::URLRequestContext* app_context, |
| 142 const StoragePartitionDescriptor& partition_descriptor) const override; | 142 const StoragePartitionDescriptor& partition_descriptor) const override; |
| 143 | 143 |
| 144 mutable std::unique_ptr<net::CookieStore> extensions_cookie_store_; | 144 mutable std::unique_ptr<net::CookieStore> extensions_cookie_store_; |
| 145 | 145 |
| 146 mutable std::unique_ptr<net::URLRequestJobFactory> extensions_job_factory_; | 146 mutable std::unique_ptr<net::URLRequestJobFactory> extensions_job_factory_; |
| 147 | 147 |
| 148 mutable std::unique_ptr<net::SdchOwner> sdch_policy_; | 148 mutable std::unique_ptr<net::SdchOwner> sdch_policy_; |
| 149 | 149 |
| 150 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileIOData); | 150 DISALLOW_COPY_AND_ASSIGN(OffTheRecordProfileIOData); |
| 151 }; | 151 }; |
| 152 | 152 |
| 153 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IO_DATA_H_ | 153 #endif // CHROME_BROWSER_PROFILES_OFF_THE_RECORD_PROFILE_IO_DATA_H_ |
| OLD | NEW |