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

Unified Diff: extensions/common/manifest_handlers/kiosk_mode_info.h

Issue 1595483004: kiosk: Add kiosk.required_platform_version manifest key (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: put required_platform_version under kiosk and target dev channel Created 4 years, 11 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
« no previous file with comments | « extensions/common/manifest_constants.cc ('k') | extensions/common/manifest_handlers/kiosk_mode_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/common/manifest_handlers/kiosk_mode_info.h
diff --git a/extensions/common/manifest_handlers/kiosk_mode_info.h b/extensions/common/manifest_handlers/kiosk_mode_info.h
index d23df60e3ae18d043c92aeb848b387fba6e25203..514e78eece963cf8d873958450b5c0e3f5e8ff2a 100644
--- a/extensions/common/manifest_handlers/kiosk_mode_info.h
+++ b/extensions/common/manifest_handlers/kiosk_mode_info.h
@@ -24,7 +24,8 @@ struct KioskModeInfo : public Extension::ManifestData {
};
KioskModeInfo(KioskStatus kiosk_status,
- const std::vector<std::string>& secondary_app_ids);
+ const std::vector<std::string>& secondary_app_ids,
+ const std::string& required_platform_version);
~KioskModeInfo() override;
// Gets the KioskModeInfo for |extension|, or NULL if none was
@@ -44,6 +45,8 @@ struct KioskModeInfo : public Extension::ManifestData {
// The IDs of the kiosk secondary apps.
const std::vector<std::string> secondary_app_ids;
+
+ const std::string required_platform_version;
};
// Parses the "kiosk_enabled" and "kiosk_only" manifest keys.
« no previous file with comments | « extensions/common/manifest_constants.cc ('k') | extensions/common/manifest_handlers/kiosk_mode_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698