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

Side by Side Diff: chrome/common/extensions/manifest_handlers/kiosk_enabled_info.h

Issue 23604068: Add "kiosk_only" manifest attribute for platform apps. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed .crx binary Created 7 years, 2 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2013 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 #ifndef CHROME_COMMON_EXTENSIONS_MANIFEST_HANDLERS_KIOSK_ENABLED_INFO_H_
6 #define CHROME_COMMON_EXTENSIONS_MANIFEST_HANDLERS_KIOSK_ENABLED_INFO_H_
7
8 #include <string>
9 #include <vector>
10
11 #include "chrome/common/extensions/extension.h"
12 #include "chrome/common/extensions/manifest_handler.h"
13 #include "extensions/common/manifest.h"
14
15 namespace extensions {
16
17 struct KioskEnabledInfo : public Extension::ManifestData {
18 explicit KioskEnabledInfo(bool is_kiosk_enabled);
19 virtual ~KioskEnabledInfo();
20
21 bool kiosk_enabled;
22
23 // Whether the extension or app should be enabled in app kiosk mode.
24 static bool IsKioskEnabled(const Extension* extension);
25 };
26
27 // Parses the "kiosk_enabled" manifest key.
28 class KioskEnabledHandler : public ManifestHandler {
29 public:
30 KioskEnabledHandler();
31 virtual ~KioskEnabledHandler();
32
33 virtual bool Parse(Extension* extension, string16* error) OVERRIDE;
34 private:
35 virtual const std::vector<std::string> Keys() const OVERRIDE;
36
37 DISALLOW_COPY_AND_ASSIGN(KioskEnabledHandler);
38 };
39
40 } // namespace extensions
41
42 #endif // CHROME_COMMON_EXTENSIONS_MANIFEST_HANDLERS_KIOSK_ENABLED_INFO_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698