| 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_SHELL_CONNECT_UTIL_H_ | 5 #ifndef MOJO_SHELL_CONNECT_UTIL_H_ |
| 6 #define MOJO_SHELL_CONNECT_UTIL_H_ | 6 #define MOJO_SHELL_CONNECT_UTIL_H_ |
| 7 | 7 |
| 8 #include "mojo/public/cpp/bindings/interface_ptr.h" | 8 #include "mojo/public/cpp/bindings/interface_ptr.h" |
| 9 #include "mojo/public/cpp/system/handle.h" | 9 #include "mojo/public/cpp/system/handle.h" |
| 10 #include "mojo/shell/identity.h" | 10 #include "mojo/shell/identity.h" |
| 11 #include "mojo/shell/public/interfaces/shell.mojom.h" | 11 #include "mojo/shell/public/interfaces/connector.mojom.h" |
| 12 | 12 |
| 13 namespace mojo { | 13 namespace mojo { |
| 14 namespace shell { | 14 namespace shell { |
| 15 | 15 |
| 16 class ApplicationManager; | 16 class Shell; |
| 17 | 17 |
| 18 ScopedMessagePipeHandle ConnectToInterfaceByName( | 18 ScopedMessagePipeHandle ConnectToInterfaceByName( |
| 19 ApplicationManager* application_manager, | 19 Shell* shell, |
| 20 const Identity& source, | 20 const Identity& source, |
| 21 const Identity& target, | 21 const Identity& target, |
| 22 const std::string& interface_name); | 22 const std::string& interface_name); |
| 23 | 23 |
| 24 // Must only be used by shell internals and test code as it does not forward | 24 // Must only be used by shell internals and test code as it does not forward |
| 25 // capability filters. Runs |application_name| with a permissive capability | 25 // capability filters. Runs |name| with a permissive capability filter. |
| 26 // filter. | |
| 27 template <typename Interface> | 26 template <typename Interface> |
| 28 inline void ConnectToInterface(ApplicationManager* application_manager, | 27 inline void ConnectToInterface(Shell* shell, |
| 29 const Identity& source, | 28 const Identity& source, |
| 30 const Identity& target, | 29 const Identity& target, |
| 31 InterfacePtr<Interface>* ptr) { | 30 InterfacePtr<Interface>* ptr) { |
| 32 ScopedMessagePipeHandle service_handle = ConnectToInterfaceByName( | 31 ScopedMessagePipeHandle service_handle = |
| 33 application_manager, source, target, Interface::Name_); | 32 ConnectToInterfaceByName(shell, source, target, Interface::Name_); |
| 34 ptr->Bind(InterfacePtrInfo<Interface>(std::move(service_handle), 0u)); | 33 ptr->Bind(InterfacePtrInfo<Interface>(std::move(service_handle), 0u)); |
| 35 } | 34 } |
| 36 | 35 |
| 37 template <typename Interface> | 36 template <typename Interface> |
| 38 inline void ConnectToInterface(ApplicationManager* application_manager, | 37 inline void ConnectToInterface(Shell* shell, |
| 39 const Identity& source, | 38 const Identity& source, |
| 40 const std::string& application_name, | 39 const std::string& name, |
| 41 InterfacePtr<Interface>* ptr) { | 40 InterfacePtr<Interface>* ptr) { |
| 42 ScopedMessagePipeHandle service_handle = ConnectToInterfaceByName( | 41 ScopedMessagePipeHandle service_handle = ConnectToInterfaceByName( |
| 43 application_manager, source, | 42 shell, source, |
| 44 Identity(application_name, std::string(), mojom::Connector::kUserInherit), | 43 Identity(name, std::string(), mojom::Connector::kUserInherit), |
| 45 Interface::Name_); | 44 Interface::Name_); |
| 46 ptr->Bind(InterfacePtrInfo<Interface>(std::move(service_handle), 0u)); | 45 ptr->Bind(InterfacePtrInfo<Interface>(std::move(service_handle), 0u)); |
| 47 } | 46 } |
| 48 | 47 |
| 49 } // namespace shell | 48 } // namespace shell |
| 50 } // namespace mojo | 49 } // namespace mojo |
| 51 | 50 |
| 52 | 51 |
| 53 #endif // MOJO_SHELL_CONNECT_UTIL_H_ | 52 #endif // MOJO_SHELL_CONNECT_UTIL_H_ |
| OLD | NEW |