| 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 on ChromeOS at startup time. It is a list of strings, each string | |
| 73 // contains 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 accessed | |
| 75 // through extensions::ExternalPolicyProvider. | |
| 76 extern const char kInstallSigninList[]; | |
| 77 | |
| 78 // String pref for what version chrome was last time the extension prefs were | 71 // String pref for what version chrome was last time the extension prefs were |
| 79 // loaded. | 72 // loaded. |
| 80 extern const char kLastChromeVersion[]; | 73 extern const char kLastChromeVersion[]; |
| 81 | 74 |
| 82 // Time of the last extensions auto-update check. | 75 // Time of the last extensions auto-update check. |
| 83 extern const char kLastUpdateCheck[]; | 76 extern const char kLastUpdateCheck[]; |
| 84 | 77 |
| 85 // Blacklist and whitelist for Native Messaging Hosts. | 78 // Blacklist and whitelist for Native Messaging Hosts. |
| 86 extern const char kNativeMessagingBlacklist[]; | 79 extern const char kNativeMessagingBlacklist[]; |
| 87 extern const char kNativeMessagingWhitelist[]; | 80 extern const char kNativeMessagingWhitelist[]; |
| (...skipping 30 matching lines...) Expand all Loading... |
| 118 // Extension-set content settings. | 111 // Extension-set content settings. |
| 119 extern const char kPrefContentSettings[]; | 112 extern const char kPrefContentSettings[]; |
| 120 | 113 |
| 121 // Extension-set incognito content settings. | 114 // Extension-set incognito content settings. |
| 122 extern const char kPrefIncognitoContentSettings[]; | 115 extern const char kPrefIncognitoContentSettings[]; |
| 123 | 116 |
| 124 } // namespace pref_names | 117 } // namespace pref_names |
| 125 } // namespace extensions | 118 } // namespace extensions |
| 126 | 119 |
| 127 #endif // EXTENSIONS_BROWSER_PREF_NAMES_H_ | 120 #endif // EXTENSIONS_BROWSER_PREF_NAMES_H_ |
| OLD | NEW |