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_IDENTITY_H_ | 5 #ifndef SERVICES_SHELL_PUBLIC_CPP_IDENTITY_H_ |
6 #define MOJO_SHELL_PUBLIC_CPP_IDENTITY_H_ | 6 #define SERVICES_SHELL_PUBLIC_CPP_IDENTITY_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "mojo/shell/public/interfaces/connector.mojom.h" | 10 #include "services/shell/public/interfaces/connector.mojom.h" |
11 | 11 |
12 namespace mojo { | 12 namespace mojo { |
13 | 13 |
14 // Represents the identity of an application. | 14 // Represents the identity of an application. |
15 // |name| is the structured name of the application. | 15 // |name| is the structured name of the application. |
16 // |instance| is a string that allows to tie a specific instance to another. A | 16 // |instance| is a string that allows to tie a specific instance to another. A |
17 // typical use case of instance is to control process grouping for a given name. | 17 // typical use case of instance is to control process grouping for a given name. |
18 class Identity { | 18 class Identity { |
19 public: | 19 public: |
20 Identity(); | 20 Identity(); |
(...skipping 24 matching lines...) Expand all Loading... |
45 struct TypeConverter<shell::mojom::IdentityPtr, Identity> { | 45 struct TypeConverter<shell::mojom::IdentityPtr, Identity> { |
46 static shell::mojom::IdentityPtr Convert(const Identity& input); | 46 static shell::mojom::IdentityPtr Convert(const Identity& input); |
47 }; | 47 }; |
48 template <> | 48 template <> |
49 struct TypeConverter<Identity, shell::mojom::IdentityPtr> { | 49 struct TypeConverter<Identity, shell::mojom::IdentityPtr> { |
50 static Identity Convert(const shell::mojom::IdentityPtr& input); | 50 static Identity Convert(const shell::mojom::IdentityPtr& input); |
51 }; | 51 }; |
52 | 52 |
53 } // namespace mojo | 53 } // namespace mojo |
54 | 54 |
55 #endif // MOJO_SHELL_PUBLIC_CPP_IDENTITY_H_ | 55 #endif // SERVICES_SHELL_PUBLIC_CPP_IDENTITY_H_ |
OLD | NEW |