| 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 MOJO_PACKAGE_MANAGER_PACKAGE_MANAGER_IMPL_H_ | 5 #ifndef MOJO_PACKAGE_MANAGER_PACKAGE_MANAGER_IMPL_H_ |
| 6 #define MOJO_PACKAGE_MANAGER_PACKAGE_MANAGER_IMPL_H_ | 6 #define MOJO_PACKAGE_MANAGER_PACKAGE_MANAGER_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 #include "mojo/fetcher/url_resolver.h" | 9 #include "mojo/fetcher/url_resolver.h" |
| 10 #include "mojo/services/network/public/interfaces/network_service.mojom.h" | 10 #include "mojo/services/network/public/interfaces/network_service.mojom.h" |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 92 scoped_ptr<fetcher::URLResolver> url_resolver_; | 92 scoped_ptr<fetcher::URLResolver> url_resolver_; |
| 93 const bool disable_cache_; | 93 const bool disable_cache_; |
| 94 NetworkServicePtr network_service_; | 94 NetworkServicePtr network_service_; |
| 95 URLLoaderFactoryPtr url_loader_factory_; | 95 URLLoaderFactoryPtr url_loader_factory_; |
| 96 ApplicationPackagedAlias application_package_alias_; | 96 ApplicationPackagedAlias application_package_alias_; |
| 97 MimeTypeToURLMap mime_type_to_url_; | 97 MimeTypeToURLMap mime_type_to_url_; |
| 98 IdentityToContentHandlerMap identity_to_content_handler_; | 98 IdentityToContentHandlerMap identity_to_content_handler_; |
| 99 // Counter used to assign ids to content handlers. | 99 // Counter used to assign ids to content handlers. |
| 100 uint32_t content_handler_id_counter_; | 100 uint32_t content_handler_id_counter_; |
| 101 base::TaskRunner* task_runner_; | 101 base::TaskRunner* task_runner_; |
| 102 base::FilePath shell_file_root_; |
| 102 | 103 |
| 103 DISALLOW_COPY_AND_ASSIGN(PackageManagerImpl); | 104 DISALLOW_COPY_AND_ASSIGN(PackageManagerImpl); |
| 104 }; | 105 }; |
| 105 | 106 |
| 106 } // namespace package_manager | 107 } // namespace package_manager |
| 107 } // namespace mojo | 108 } // namespace mojo |
| 108 | 109 |
| 109 #endif // MOJO_PACKAGE_MANAGER_PACKAGE_MANAGER_IMPL_H_ | 110 #endif // MOJO_PACKAGE_MANAGER_PACKAGE_MANAGER_IMPL_H_ |
| OLD | NEW |