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

Side by Side Diff: services/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
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « services/shell/public/cpp/connector.h ('k') | services/shell/public/cpp/initialize_base_and_icu.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698