OLD | NEW |
---|---|
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef EXTENSIONS_BROWSER_PREF_NAMES_H_ | 5 #ifndef EXTENSIONS_BROWSER_PREF_NAMES_H_ |
6 #define EXTENSIONS_BROWSER_PREF_NAMES_H_ | 6 #define EXTENSIONS_BROWSER_PREF_NAMES_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "extensions/browser/extension_prefs_scope.h" | 10 #include "extensions/browser/extension_prefs_scope.h" |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
61 // extension blacklist, which is Google controlled. | 61 // extension blacklist, which is Google controlled. |
62 extern const char kInstallDenyList[]; | 62 extern const char kInstallDenyList[]; |
63 | 63 |
64 // A list containing extensions that Chrome will silently install | 64 // A list containing extensions that Chrome will silently install |
65 // at startup time. It is a list of strings, each string contains | 65 // at startup time. It is a list of strings, each string contains |
66 // an extension ID and an update URL, delimited by a semicolon. | 66 // an extension ID and an update URL, delimited by a semicolon. |
67 // This preference is set by an admin policy, and meant to be only | 67 // This preference is set by an admin policy, and meant to be only |
68 // accessed through extensions::ExternalPolicyProvider. | 68 // accessed through extensions::ExternalPolicyProvider. |
69 extern const char kInstallForceList[]; | 69 extern const char kInstallForceList[]; |
70 | 70 |
71 // A list containing apps that Chrome will silently install on the login screen | |
72 // on ChromeOS at startup time. It is a list of strings, each string contains | |
emaxx
2017/03/01 13:54:36
nit: s/ChromeOS/Chrome OS/
achuithb
2017/03/01 14:11:29
Done.
| |
73 // an app ID and an update URL, delimited by a semicolon. | |
74 // This preference is set by an admin policy, and meant to be only | |
75 // accessed through extensions::ExternalPolicyProvider. | |
76 extern const char kInstallLoginScreenAppList[]; | |
77 | |
71 // String pref for what version chrome was last time the extension prefs were | 78 // String pref for what version chrome was last time the extension prefs were |
72 // loaded. | 79 // loaded. |
73 extern const char kLastChromeVersion[]; | 80 extern const char kLastChromeVersion[]; |
74 | 81 |
75 // Time of the last extensions auto-update check. | 82 // Time of the last extensions auto-update check. |
76 extern const char kLastUpdateCheck[]; | 83 extern const char kLastUpdateCheck[]; |
77 | 84 |
78 // Blacklist and whitelist for Native Messaging Hosts. | 85 // Blacklist and whitelist for Native Messaging Hosts. |
79 extern const char kNativeMessagingBlacklist[]; | 86 extern const char kNativeMessagingBlacklist[]; |
80 extern const char kNativeMessagingWhitelist[]; | 87 extern const char kNativeMessagingWhitelist[]; |
(...skipping 30 matching lines...) Expand all Loading... | |
111 // Extension-set content settings. | 118 // Extension-set content settings. |
112 extern const char kPrefContentSettings[]; | 119 extern const char kPrefContentSettings[]; |
113 | 120 |
114 // Extension-set incognito content settings. | 121 // Extension-set incognito content settings. |
115 extern const char kPrefIncognitoContentSettings[]; | 122 extern const char kPrefIncognitoContentSettings[]; |
116 | 123 |
117 } // namespace pref_names | 124 } // namespace pref_names |
118 } // namespace extensions | 125 } // namespace extensions |
119 | 126 |
120 #endif // EXTENSIONS_BROWSER_PREF_NAMES_H_ | 127 #endif // EXTENSIONS_BROWSER_PREF_NAMES_H_ |
OLD | NEW |