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 MOJO_SHELL_PUBLIC_CPP_INTERFACE_REGISTRY_H_ | 5 #ifndef SERVICES_SHELL_PUBLIC_CPP_INTERFACE_REGISTRY_H_ |
6 #define MOJO_SHELL_PUBLIC_CPP_INTERFACE_REGISTRY_H_ | 6 #define SERVICES_SHELL_PUBLIC_CPP_INTERFACE_REGISTRY_H_ |
7 | 7 |
8 #include "mojo/public/cpp/bindings/binding.h" | 8 #include "mojo/public/cpp/bindings/binding.h" |
9 #include "mojo/shell/public/cpp/lib/interface_factory_binder.h" | 9 #include "services/shell/public/cpp/lib/interface_factory_binder.h" |
10 #include "mojo/shell/public/interfaces/interface_provider.mojom.h" | 10 #include "services/shell/public/interfaces/interface_provider.mojom.h" |
11 | 11 |
12 namespace mojo { | 12 namespace mojo { |
13 | 13 |
14 class InterfaceBinder; | 14 class InterfaceBinder; |
15 | 15 |
16 // An implementation of shell::mojom::InterfaceProvider that allows the user to | 16 // An implementation of shell::mojom::InterfaceProvider that allows the user to |
17 // register services to be exposed to another application. | 17 // register services to be exposed to another application. |
18 // | 18 // |
19 // To use, define a class that implements your specific interface. Then | 19 // To use, define a class that implements your specific interface. Then |
20 // implement an InterfaceFactory<Foo> that binds instances of FooImpl to | 20 // implement an InterfaceFactory<Foo> that binds instances of FooImpl to |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 Connection* connection_; | 99 Connection* connection_; |
100 | 100 |
101 InterfaceBinder* default_binder_; | 101 InterfaceBinder* default_binder_; |
102 NameToInterfaceBinderMap name_to_binder_; | 102 NameToInterfaceBinderMap name_to_binder_; |
103 | 103 |
104 DISALLOW_COPY_AND_ASSIGN(InterfaceRegistry); | 104 DISALLOW_COPY_AND_ASSIGN(InterfaceRegistry); |
105 }; | 105 }; |
106 | 106 |
107 } // namespace mojo | 107 } // namespace mojo |
108 | 108 |
109 #endif // MOJO_SHELL_PUBLIC_CPP_INTERFACE_REGISTRY_H_ | 109 #endif // SERVICES_SHELL_PUBLIC_CPP_INTERFACE_REGISTRY_H_ |
OLD | NEW |