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

Side by Side Diff: chrome/browser/extensions/extension_management_constants.h

Issue 559603002: Add new ExtensionManagement preference (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes addressing #16 Created 6 years, 3 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
OLDNEW
(Empty)
1 // Copyright 2014 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_BROWSER_EXTENSIONS_EXTENSION_MANAGEMENT_CONSTANTS_H_
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_MANAGEMENT_CONSTANTS_H_
7
8 #include <string>
9
10 #include "extensions/common/manifest.h"
11
12 namespace extensions {
13 namespace schema_constants {
14
15 extern const char kWildcard[];
16
17 extern const char kInstallationMode[];
18 extern const char kAllowed[];
19 extern const char kBlocked[];
20 extern const char kForceInstalled[];
21 extern const char kNormalInstalled[];
22
23 extern const char kUpdateUrl[];
24 extern const char kInstallSources[];
25 extern const char kAllowedTypes[];
26
27 extern const char kUpdateUrlPrefix[];
28
29 struct AllowedTypesMapEntry {
30 // Name of allowed types of extensions used in schema of extension
31 // management preference.
32 const char* name;
33 // The corresponding Manifest::Type.
34 Manifest::Type manifest_type;
35 };
36
37 extern const size_t kAllowedTypesMapSize;
38 extern const AllowedTypesMapEntry kAllowedTypesMap[];
39
40 // Helper fuction over |kAllowedTypesMap|, returns Manifest::TYPE_UNKNOWN if
41 // not found.
42 Manifest::Type GetManifestType(const std::string& name);
43
44 } // namespace schema_constants
45 } // namespace extensions
46
47 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_MANAGEMENT_CONSTANTS_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_management.cc ('k') | chrome/browser/extensions/extension_management_constants.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698