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

Unified Diff: extensions/common/api/app_runtime.idl

Issue 2272813003: Add ARC++ specific fields to launch data for specific apps. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: chrome build fix. 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: extensions/common/api/app_runtime.idl
diff --git a/extensions/common/api/app_runtime.idl b/extensions/common/api/app_runtime.idl
index bd3f78f9a579f89f55cddf315c9a1916c15d507d..51cd7392e53fad2cfea8584182d6e10bf35f673d 100644
--- a/extensions/common/api/app_runtime.idl
+++ b/extensions/common/api/app_runtime.idl
@@ -47,6 +47,16 @@ namespace app.runtime {
new_note
};
+ // Status of the play store.
+ [nodoc] enum PlayStoreStatus {
+ // Indicates that the play store is enabled. It also implies available.
+ enabled,
+ // Indicates that the play store is available but not enabled.
+ available,
+ // Indicates that the play store status is unknown.
+ unknown
+ };
+
// Optional data that includes action-specific launch information.
dictionary ActionData {
ActionType actionType;
@@ -90,6 +100,9 @@ namespace app.runtime {
// launched with. This is null if the app was not launched with a specific
// action intent.
ActionData? actionData;
+
+ // Internal fields used to indicate ARC++ status on the device.
+ [nodoc] PlayStoreStatus? playStoreStatus;
};
// This object specifies details and operations to perform on the embedding
« no previous file with comments | « extensions/browser/api/app_runtime/app_runtime_api.cc ('k') | extensions/shell/browser/shell_extension_system.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698