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

Unified Diff: services/shell/public/cpp/names.h

Issue 2172673002: Move Service packages from Mojo Applications -> Packages dir (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « services/shell/public/constants.gni ('k') | services/shell/public/service_manifest.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/shell/public/cpp/names.h
diff --git a/services/shell/public/cpp/names.h b/services/shell/public/cpp/names.h
index 328fd2d0ac796659ebf3d16eeaacc4b00d32823e..8de6b6c0e82cec7ead5655fca193f29d4ccded19 100644
--- a/services/shell/public/cpp/names.h
+++ b/services/shell/public/cpp/names.h
@@ -12,28 +12,28 @@ namespace shell {
extern const char kNameType_Mojo[];
extern const char kNameType_Exe[];
-// Mojo services and applications are identified by structured "names", of the
-// form:
+// Mojo services are identified by structured "names", of the form:
//
// type:path.
//
-// The type field tells the shell how to load the application. Two types are
-// currently recognized:
+// The type field tells the shell how to load the service. Two types are
+// recognized:
//
// mojo
-// Represents an application packaged as a .mojo, launched from the
-// NativeRunner launch path. .mojo files are assumed to live alongside the
-// shell executable at a path matching <path>/<path>.mojo. .mojo applications
-// have a MojoMain() entrypoint that receives a handle to a ServiceRequest
-// that must be bound to enable further communication with the shell.
+// Represents a service packaged as a .library, launched from the NativeRunner
+// launch path. .library files are assumed to live alongside the executable
+// hosting the service manager at a path matching <path>/<path>.library.
+// .library files have a MojoMain() entrypoint that receives a handle to a
+// ServiceRequest that must be bound to enable further communication with the
+// Service Manager.
//
// exe
// Represents a native executable on the host platform, expected to live
// alongside the shell executable. Executables launched via this mechanism are
// passed a handle to the shell on the command line and are expected to bind
-// a ServiceRequest enabling further communication with the shell. The
-// path component contains the executable name, minus any platform-specific
-// extension.
+// a ServiceRequest enabling further communication with the Service Manager.
+// The path component contains the executable name, minus any platform
+// specific extension.
//
// Other types may be supplied but are not recognized by any of the
// NativeRunners, and as such custom loaders must be specified for such names.
« no previous file with comments | « services/shell/public/constants.gni ('k') | services/shell/public/service_manifest.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698