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

Unified Diff: components/arc/common/app.mojom

Issue 2210143003: arc: Handle non-launchable apps. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: comment fixed Created 4 years, 4 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
Index: components/arc/common/app.mojom
diff --git a/components/arc/common/app.mojom b/components/arc/common/app.mojom
index 1110e41be5e13f19a61d2622d38834cb6105214f..003940cde15871ad7e3773b735f992ede630d0e3 100644
--- a/components/arc/common/app.mojom
+++ b/components/arc/common/app.mojom
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
-// Next MinVersion: 13
+// Next MinVersion: 14
module arc.mojom;
@@ -56,7 +56,7 @@ enum ShowPackageInfoPage {
MANAGE_LINKS = 1,
};
-// Next method ID: 13
+// Next method ID: 14
interface AppHost {
// Sends newly added ARC app to Chrome. This message is sent when ARC receives
// package added notification. Multiple apps may be added in the one package.
@@ -91,8 +91,12 @@ interface AppHost {
[MinVersion=1] OnPackageRemoved@3(string package_name);
// Sends information about newly created task.
- [MinVersion=4] OnTaskCreated@4(int32 task_id, string package_name,
- string activity);
+ [MinVersion=13] OnTaskCreated@13(int32 task_id, string name,
+ string package_name, string activity);
+
+ // Sends information about newly created task.
+ [MinVersion=4] OnTaskCreatedDepricated@4(int32 task_id, string package_name,
+ string activity);
// Notifies that task has been destroyed.
[MinVersion=4] OnTaskDestroyed@5(int32 task_id);

Powered by Google App Engine
This is Rietveld 408576698