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 2615633010: kiosk: Add kiosk.always_update manifest key (Closed)
Patch Set: Created 3 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 bd37f969c65ba16279af4ce1339b6bea3eaead41..b7525bd62d5d5838981396c879824ec98dd6dc76 100644
--- a/extensions/common/manifest_handlers/kiosk_mode_info.h
+++ b/extensions/common/manifest_handlers/kiosk_mode_info.h
@@ -25,7 +25,8 @@ struct KioskModeInfo : public Extension::ManifestData {
KioskModeInfo(KioskStatus kiosk_status,
const std::vector<std::string>& secondary_app_ids,
- const std::string& required_platform_version);
+ const std::string& required_platform_version,
+ bool always_update);
~KioskModeInfo() override;
// Gets the KioskModeInfo for |extension|, or NULL if none was
@@ -51,6 +52,7 @@ struct KioskModeInfo : public Extension::ManifestData {
const std::vector<std::string> secondary_app_ids;
const std::string required_platform_version;
+ const bool always_update;
};
// 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