| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 SERVICES_CATALOG_CATALOG_H_ | 5 #ifndef SERVICES_CATALOG_CATALOG_H_ |
| 6 #define SERVICES_CATALOG_CATALOG_H_ | 6 #define SERVICES_CATALOG_CATALOG_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <string> | 10 #include <string> |
| 11 | 11 |
| 12 #include "base/macros.h" | 12 #include "base/macros.h" |
| 13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "components/filesystem/public/interfaces/directory.mojom.h" | 14 #include "components/filesystem/public/interfaces/directory.mojom.h" |
| 15 #include "mojo/public/cpp/bindings/binding.h" | 15 #include "mojo/public/cpp/bindings/binding.h" |
| 16 #include "mojo/public/cpp/bindings/binding_set.h" | 16 #include "mojo/public/cpp/bindings/binding_set.h" |
| 17 #include "services/catalog/public/interfaces/catalog.mojom.h" | 17 #include "services/catalog/public/interfaces/catalog.mojom.h" |
| 18 #include "services/catalog/types.h" | 18 #include "services/catalog/types.h" |
| 19 #include "services/shell/public/cpp/service.h" | 19 #include "services/service_manager/public/cpp/service.h" |
| 20 #include "services/shell/public/interfaces/resolver.mojom.h" | 20 #include "services/service_manager/public/interfaces/resolver.mojom.h" |
| 21 #include "services/shell/public/interfaces/service.mojom.h" | 21 #include "services/service_manager/public/interfaces/service.mojom.h" |
| 22 | 22 |
| 23 namespace base { | 23 namespace base { |
| 24 class SequencedWorkerPool; | 24 class SequencedWorkerPool; |
| 25 class SingleThreadTaskRunner; | 25 class SingleThreadTaskRunner; |
| 26 } | 26 } |
| 27 | 27 |
| 28 namespace filesystem { | 28 namespace filesystem { |
| 29 class LockTable; | 29 class LockTable; |
| 30 } | 30 } |
| 31 | 31 |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 mojo::BindingSet<mojom::CatalogControl> control_bindings_; | 118 mojo::BindingSet<mojom::CatalogControl> control_bindings_; |
| 119 | 119 |
| 120 base::WeakPtrFactory<Catalog> weak_factory_; | 120 base::WeakPtrFactory<Catalog> weak_factory_; |
| 121 | 121 |
| 122 DISALLOW_COPY_AND_ASSIGN(Catalog); | 122 DISALLOW_COPY_AND_ASSIGN(Catalog); |
| 123 }; | 123 }; |
| 124 | 124 |
| 125 } // namespace catalog | 125 } // namespace catalog |
| 126 | 126 |
| 127 #endif // SERVICES_CATALOG_CATALOG_H_ | 127 #endif // SERVICES_CATALOG_CATALOG_H_ |
| OLD | NEW |