| 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 CONTENT_COMMON_MOJO_SERVICE_REGISTRY_IMPL_H_ | 5 #ifndef CONTENT_COMMON_MOJO_SERVICE_REGISTRY_IMPL_H_ |
| 6 #define CONTENT_COMMON_MOJO_SERVICE_REGISTRY_IMPL_H_ | 6 #define CONTENT_COMMON_MOJO_SERVICE_REGISTRY_IMPL_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <queue> | 9 #include <queue> |
| 10 #include <string> | 10 #include <string> |
| 11 #include <utility> | 11 #include <utility> |
| 12 | 12 |
| 13 #include "base/callback.h" | 13 #include "base/callback.h" |
| 14 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
| 15 #include "base/memory/weak_ptr.h" | 15 #include "base/memory/weak_ptr.h" |
| 16 #include "content/public/common/service_registry.h" | 16 #include "content/public/common/service_registry.h" |
| 17 #include "mojo/public/cpp/bindings/binding.h" | 17 #include "mojo/public/cpp/bindings/binding.h" |
| 18 #include "mojo/public/cpp/system/core.h" | 18 #include "mojo/public/cpp/system/core.h" |
| 19 #include "mojo/shell/public/interfaces/interface_provider.mojom.h" | 19 #include "services/shell/public/interfaces/interface_provider.mojom.h" |
| 20 | 20 |
| 21 namespace content { | 21 namespace content { |
| 22 | 22 |
| 23 class CONTENT_EXPORT ServiceRegistryImpl | 23 class CONTENT_EXPORT ServiceRegistryImpl |
| 24 : public ServiceRegistry, | 24 : public ServiceRegistry, |
| 25 public NON_EXPORTED_BASE(mojo::shell::mojom::InterfaceProvider) { | 25 public NON_EXPORTED_BASE(mojo::shell::mojom::InterfaceProvider) { |
| 26 public: | 26 public: |
| 27 using ServiceFactory = base::Callback<void(mojo::ScopedMessagePipeHandle)>; | 27 using ServiceFactory = base::Callback<void(mojo::ScopedMessagePipeHandle)>; |
| 28 | 28 |
| 29 ServiceRegistryImpl(); | 29 ServiceRegistryImpl(); |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 pending_connects_; | 69 pending_connects_; |
| 70 | 70 |
| 71 std::map<std::string, ServiceFactory> service_overrides_; | 71 std::map<std::string, ServiceFactory> service_overrides_; |
| 72 | 72 |
| 73 base::WeakPtrFactory<ServiceRegistry> weak_factory_; | 73 base::WeakPtrFactory<ServiceRegistry> weak_factory_; |
| 74 }; | 74 }; |
| 75 | 75 |
| 76 } // namespace content | 76 } // namespace content |
| 77 | 77 |
| 78 #endif // CONTENT_COMMON_MOJO_SERVICE_REGISTRY_IMPL_H_ | 78 #endif // CONTENT_COMMON_MOJO_SERVICE_REGISTRY_IMPL_H_ |
| OLD | NEW |