| 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 CONTENT_PUBLIC_COMMON_MOJO_SHELL_CONNECTION_H_ | 5 #ifndef CONTENT_PUBLIC_COMMON_MOJO_SHELL_CONNECTION_H_ |
| 6 #define CONTENT_PUBLIC_COMMON_MOJO_SHELL_CONNECTION_H_ | 6 #define CONTENT_PUBLIC_COMMON_MOJO_SHELL_CONNECTION_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/callback_forward.h" | 10 #include "base/callback_forward.h" |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 // connection may already have been closed, in which case |closure| will be | 75 // connection may already have been closed, in which case |closure| will be |
| 76 // run immediately before returning from this function. | 76 // run immediately before returning from this function. |
| 77 virtual void SetConnectionLostClosure(const base::Closure& closure) = 0; | 77 virtual void SetConnectionLostClosure(const base::Closure& closure) = 0; |
| 78 | 78 |
| 79 // Allows the caller to expose interfaces to the caller using the identity of | 79 // Allows the caller to expose interfaces to the caller using the identity of |
| 80 // this object's ShellClient. As distinct from AddEmbeddedService() and | 80 // this object's ShellClient. As distinct from AddEmbeddedService() and |
| 81 // AddShellClientRequestHandler() which specify unique identities for the | 81 // AddShellClientRequestHandler() which specify unique identities for the |
| 82 // registered services. | 82 // registered services. |
| 83 virtual void AddEmbeddedShellClient( | 83 virtual void AddEmbeddedShellClient( |
| 84 std::unique_ptr<shell::ShellClient> shell_client) = 0; | 84 std::unique_ptr<shell::ShellClient> shell_client) = 0; |
| 85 virtual void AddEmbeddedShellClient( |
| 86 shell::ShellClient* shell_client) = 0; |
| 85 | 87 |
| 86 // Adds an embedded service to this connection's ShellClientFactory. | 88 // Adds an embedded service to this connection's ShellClientFactory. |
| 87 // |info| provides details on how to construct new instances of the | 89 // |info| provides details on how to construct new instances of the |
| 88 // service when an incoming connection is made to |name|. | 90 // service when an incoming connection is made to |name|. |
| 89 virtual void AddEmbeddedService(const std::string& name, | 91 virtual void AddEmbeddedService(const std::string& name, |
| 90 const MojoApplicationInfo& info) = 0; | 92 const MojoApplicationInfo& info) = 0; |
| 91 | 93 |
| 92 // Adds a generic ShellClientRequestHandler for a given service name. This | 94 // Adds a generic ShellClientRequestHandler for a given service name. This |
| 93 // will be used to satisfy any incoming calls to CreateShellClient() which | 95 // will be used to satisfy any incoming calls to CreateShellClient() which |
| 94 // reference the given name. | 96 // reference the given name. |
| 95 // | 97 // |
| 96 // For in-process services, it is preferable to use |AddEmbeddedService()| as | 98 // For in-process services, it is preferable to use |AddEmbeddedService()| as |
| 97 // defined above. | 99 // defined above. |
| 98 virtual void AddShellClientRequestHandler( | 100 virtual void AddShellClientRequestHandler( |
| 99 const std::string& name, | 101 const std::string& name, |
| 100 const ShellClientRequestHandler& handler) = 0; | 102 const ShellClientRequestHandler& handler) = 0; |
| 101 }; | 103 }; |
| 102 | 104 |
| 103 } // namespace content | 105 } // namespace content |
| 104 | 106 |
| 105 #endif // CONTENT_PUBLIC_COMMON_MOJO_SHELL_CONNECTION_H_ | 107 #endif // CONTENT_PUBLIC_COMMON_MOJO_SHELL_CONNECTION_H_ |
| OLD | NEW |