| 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);
|
|
|