| 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 SERVICES_SHELL_PUBLIC_CPP_IDENTITY_H_ | 5 #ifndef SERVICES_SHELL_PUBLIC_CPP_IDENTITY_H_ |
| 6 #define SERVICES_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 "services/shell/public/interfaces/connector.mojom.h" | 10 #include "services/shell/public/interfaces/connector.mojom.h" |
| 11 | 11 |
| 12 namespace mojo { | 12 namespace shell { |
| 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(); |
| 21 Identity(const std::string& name, | 21 Identity(const std::string& name, |
| 22 const std::string& user_id); | 22 const std::string& user_id); |
| (...skipping 11 matching lines...) Expand all Loading... |
| 34 const std::string& user_id() const { return user_id_; } | 34 const std::string& user_id() const { return user_id_; } |
| 35 void set_user_id(const std::string& user_id) { user_id_ = user_id; } | 35 void set_user_id(const std::string& user_id) { user_id_ = user_id; } |
| 36 const std::string& instance() const { return instance_; } | 36 const std::string& instance() const { return instance_; } |
| 37 | 37 |
| 38 private: | 38 private: |
| 39 std::string name_; | 39 std::string name_; |
| 40 std::string user_id_; | 40 std::string user_id_; |
| 41 std::string instance_; | 41 std::string instance_; |
| 42 }; | 42 }; |
| 43 | 43 |
| 44 } // namespace shell |
| 45 |
| 46 namespace mojo { |
| 47 |
| 44 template <> | 48 template <> |
| 45 struct TypeConverter<shell::mojom::IdentityPtr, Identity> { | 49 struct TypeConverter<shell::mojom::IdentityPtr, shell::Identity> { |
| 46 static shell::mojom::IdentityPtr Convert(const Identity& input); | 50 static shell::mojom::IdentityPtr Convert(const shell::Identity& input); |
| 47 }; | 51 }; |
| 52 |
| 48 template <> | 53 template <> |
| 49 struct TypeConverter<Identity, shell::mojom::IdentityPtr> { | 54 struct TypeConverter<shell::Identity, shell::mojom::IdentityPtr> { |
| 50 static Identity Convert(const shell::mojom::IdentityPtr& input); | 55 static shell::Identity Convert(const shell::mojom::IdentityPtr& input); |
| 51 }; | 56 }; |
| 52 | 57 |
| 53 } // namespace mojo | 58 } // namespace mojo |
| 54 | 59 |
| 55 #endif // SERVICES_SHELL_PUBLIC_CPP_IDENTITY_H_ | 60 #endif // SERVICES_SHELL_PUBLIC_CPP_IDENTITY_H_ |
| OLD | NEW |