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

Unified Diff: mojo/shell/public/interfaces/application_manager.mojom

Issue 1578473002: Pass application ids via AcceptConnection & ConnectToApplication callback. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 11 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 | « mojo/shell/public/interfaces/application.mojom ('k') | mojo/shell/public/interfaces/shell.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/public/interfaces/application_manager.mojom
diff --git a/mojo/shell/public/interfaces/application_manager.mojom b/mojo/shell/public/interfaces/application_manager.mojom
index 02d059a0b8dc497d3454a22aa68f11f02204f537..f4bf3848c42b3e0c4906d967bf005da58dfdde70 100644
--- a/mojo/shell/public/interfaces/application_manager.mojom
+++ b/mojo/shell/public/interfaces/application_manager.mojom
@@ -7,7 +7,7 @@ module mojo.shell.mojom;
import "mojo/shell/public/interfaces/shell.mojom";
struct ApplicationInfo {
- int32 id;
+ uint32 id;
string url;
string qualifier;
uint32 pid;
@@ -29,12 +29,12 @@ interface ApplicationManagerListener {
// Called when the application manager has stopped tracking an application.
// (i.e. when it has ended/quit).
- ApplicationInstanceDestroyed(int32 id);
+ ApplicationInstanceDestroyed(uint32 id);
// Called when a pid is available for the application. This could be because a
// process was created by the runner for it, or because an existing content
// handler process was assigned.
- ApplicationPIDAvailable(int32 id, uint32 pid);
+ ApplicationPIDAvailable(uint32 id, uint32 pid);
};
// Implemented by an object in the application manager associated with a
« no previous file with comments | « mojo/shell/public/interfaces/application.mojom ('k') | mojo/shell/public/interfaces/shell.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698