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 sign-in | |
72 // screen | |
emaxx
2016/11/09 01:09:30
nit: Something is wrong with the alignment.
Denis Kuznetsov (DE-MUC)
2016/11/09 18:25:26
Done.
Was caused by "git cl format"
| |
73 // on ChromeOS at startup time. It is a list of strings, each string contains | |
74 // an app ID and an update URL, delimited by a semicolon. | |
75 // This preference is set by an admin policy, and meant to be only | |
76 // accessed through extensions::ExternalPolicyProvider. | |
77 extern const char kInstallSigninList[]; | |
78 | |
71 // String pref for what version chrome was last time the extension prefs were | 79 // String pref for what version chrome was last time the extension prefs were |
72 // loaded. | 80 // loaded. |
73 extern const char kLastChromeVersion[]; | 81 extern const char kLastChromeVersion[]; |
74 | 82 |
75 // Time of the last extensions auto-update check. | 83 // Time of the last extensions auto-update check. |
76 extern const char kLastUpdateCheck[]; | 84 extern const char kLastUpdateCheck[]; |
77 | 85 |
78 // Blacklist and whitelist for Native Messaging Hosts. | 86 // Blacklist and whitelist for Native Messaging Hosts. |
79 extern const char kNativeMessagingBlacklist[]; | 87 extern const char kNativeMessagingBlacklist[]; |
80 extern const char kNativeMessagingWhitelist[]; | 88 extern const char kNativeMessagingWhitelist[]; |
(...skipping 30 matching lines...) Expand all Loading... | |
111 // Extension-set content settings. | 119 // Extension-set content settings. |
112 extern const char kPrefContentSettings[]; | 120 extern const char kPrefContentSettings[]; |
113 | 121 |
114 // Extension-set incognito content settings. | 122 // Extension-set incognito content settings. |
115 extern const char kPrefIncognitoContentSettings[]; | 123 extern const char kPrefIncognitoContentSettings[]; |
116 | 124 |
117 } // namespace pref_names | 125 } // namespace pref_names |
118 } // namespace extensions | 126 } // namespace extensions |
119 | 127 |
120 #endif // EXTENSIONS_BROWSER_PREF_NAMES_H_ | 128 #endif // EXTENSIONS_BROWSER_PREF_NAMES_H_ |
OLD | NEW |