| 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.
|
|
|