| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 SHELL_APPLICATION_MANAGER_APPLICATION_MANAGER_H_ | 5 #ifndef SHELL_APPLICATION_MANAGER_APPLICATION_MANAGER_H_ |
| 6 #define SHELL_APPLICATION_MANAGER_APPLICATION_MANAGER_H_ | 6 #define SHELL_APPLICATION_MANAGER_APPLICATION_MANAGER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 233 | 233 |
| 234 IdentityToShellImplMap identity_to_shell_impl_; | 234 IdentityToShellImplMap identity_to_shell_impl_; |
| 235 URLToContentHandlerMap url_to_content_handler_; | 235 URLToContentHandlerMap url_to_content_handler_; |
| 236 URLToArgsMap url_to_args_; | 236 URLToArgsMap url_to_args_; |
| 237 // Note: The keys are URLs after mapping and resolving. | 237 // Note: The keys are URLs after mapping and resolving. |
| 238 URLToNativeOptionsMap url_to_native_options_; | 238 URLToNativeOptionsMap url_to_native_options_; |
| 239 | 239 |
| 240 base::SequencedWorkerPool* blocking_pool_; | 240 base::SequencedWorkerPool* blocking_pool_; |
| 241 mojo::URLResponseDiskCachePtr url_response_disk_cache_; | 241 mojo::URLResponseDiskCachePtr url_response_disk_cache_; |
| 242 mojo::NetworkServicePtr network_service_; | 242 mojo::NetworkServicePtr network_service_; |
| 243 mojo::NetworkServicePtr authenticating_network_service_; |
| 243 MimeTypeToURLMap mime_type_to_url_; | 244 MimeTypeToURLMap mime_type_to_url_; |
| 244 ScopedVector<NativeRunner> native_runners_; | 245 ScopedVector<NativeRunner> native_runners_; |
| 245 bool initialized_authentication_interceptor_; | 246 bool initialized_authentication_interceptor_; |
| 246 base::WeakPtrFactory<ApplicationManager> weak_ptr_factory_; | 247 base::WeakPtrFactory<ApplicationManager> weak_ptr_factory_; |
| 247 | 248 |
| 248 DISALLOW_COPY_AND_ASSIGN(ApplicationManager); | 249 DISALLOW_COPY_AND_ASSIGN(ApplicationManager); |
| 249 }; | 250 }; |
| 250 | 251 |
| 251 } // namespace shell | 252 } // namespace shell |
| 252 | 253 |
| 253 #endif // SHELL_APPLICATION_MANAGER_APPLICATION_MANAGER_H_ | 254 #endif // SHELL_APPLICATION_MANAGER_APPLICATION_MANAGER_H_ |
| OLD | NEW |