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

Side by Side Diff: chrome/common/extensions/mojo/inline_install_status.mojom

Issue 2791533002: Convert Web Store Inline Install IPCs to mojo (Closed)
Patch Set: Created 3 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
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 module extensions.mojom;
6
7 [Native]
8 enum WebstoreInstallStage;
9
10 [Native]
11 enum WebstoreInstallResult;
12
13 interface InlineInstallStatus {
Devlin 2017/03/31 14:18:39 Any reason to not combine this with the other mojo
catmullings 2017/04/06 20:50:15 Done.
14 // Notifies the renderer once the installation mentioned on
15 // InlineWebstoreInstall is complete.
16 InlineWebstoreInstallResponse(int32 install_id, bool success, string error,
Devlin 2017/03/31 14:18:39 One of the advantages of mojo is that it can provi
catmullings 2017/04/06 20:50:15 Done.
17 WebstoreInstallResult result);
18
19 // Notifies the renderer when install stage updates were requested for an
20 // inline install.
21 InlineInstallStageChanged(WebstoreInstallStage stage);
22
23 // Notifies the renderer when download progress updates were requested for an
24 // inline install.
25 InlineInstallDownloadProgress(int32 percent_downloaded);
26 };
27
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698