Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(185)

Side by Side Diff: mojo/shell/public/cpp/identity.h

Issue 1877753003: Move mojo\shell to services\shell (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@62scan
Patch Set: . Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « mojo/shell/public/cpp/connector.h ('k') | mojo/shell/public/cpp/initialize_base_and_icu.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef MOJO_SHELL_PUBLIC_CPP_IDENTITY_H_
6 #define MOJO_SHELL_PUBLIC_CPP_IDENTITY_H_
7
8 #include <string>
9
10 #include "mojo/shell/public/interfaces/connector.mojom.h"
11
12 namespace mojo {
13
14 // Represents the identity of an 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
17 // typical use case of instance is to control process grouping for a given name.
18 class Identity {
19 public:
20 Identity();
21 Identity(const std::string& name,
22 const std::string& user_id);
23 Identity(const std::string& name,
24 const std::string& user_id,
25 const std::string& instance);
26 Identity(const Identity& other);
27 ~Identity();
28
29 bool operator<(const Identity& other) const;
30 bool is_null() const { return name_.empty(); }
31 bool operator==(const Identity& other) const;
32
33 const std::string& name() const { return name_; }
34 const std::string& user_id() const { return user_id_; }
35 void set_user_id(const std::string& user_id) { user_id_ = user_id; }
36 const std::string& instance() const { return instance_; }
37
38 private:
39 std::string name_;
40 std::string user_id_;
41 std::string instance_;
42 };
43
44 template <>
45 struct TypeConverter<shell::mojom::IdentityPtr, Identity> {
46 static shell::mojom::IdentityPtr Convert(const Identity& input);
47 };
48 template <>
49 struct TypeConverter<Identity, shell::mojom::IdentityPtr> {
50 static Identity Convert(const shell::mojom::IdentityPtr& input);
51 };
52
53 } // namespace mojo
54
55 #endif // MOJO_SHELL_PUBLIC_CPP_IDENTITY_H_
OLDNEW
« no previous file with comments | « mojo/shell/public/cpp/connector.h ('k') | mojo/shell/public/cpp/initialize_base_and_icu.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698