Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 | |
| OLD | NEW |