 Chromium Code Reviews
 Chromium Code Reviews Issue 8202011:
  Notify users about certain changes in installed extensions.  (Closed) 
  Base URL: http://git.chromium.org/git/chromium.git@trunk
    
  
    Issue 8202011:
  Notify users about certain changes in installed extensions.  (Closed) 
  Base URL: http://git.chromium.org/git/chromium.git@trunk| OLD | NEW | 
|---|---|
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #include "chrome/common/pref_names.h" | 5 #include "chrome/common/pref_names.h" | 
| 6 | 6 | 
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" | 
| 8 | 8 | 
| 9 namespace prefs { | 9 namespace prefs { | 
| 10 | 10 | 
| (...skipping 1170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1181 | 1181 | 
| 1182 // A whitelist of extension ids the user can install: exceptions from the | 1182 // A whitelist of extension ids the user can install: exceptions from the | 
| 1183 // following blacklist. This is controlled by the administrator. | 1183 // following blacklist. This is controlled by the administrator. | 
| 1184 const char kExtensionInstallAllowList[] = "extensions.install.allowlist"; | 1184 const char kExtensionInstallAllowList[] = "extensions.install.allowlist"; | 
| 1185 // A blacklist, containing extensions the user cannot install. This list can | 1185 // A blacklist, containing extensions the user cannot install. This list can | 
| 1186 // conatin "*" meaning all extensions. This is controlled by the administrator. | 1186 // conatin "*" meaning all extensions. This is controlled by the administrator. | 
| 1187 // This list should not be confused with the extension blacklist, which is | 1187 // This list should not be confused with the extension blacklist, which is | 
| 1188 // Google controlled. | 1188 // Google controlled. | 
| 1189 const char kExtensionInstallDenyList[] = "extensions.install.denylist"; | 1189 const char kExtensionInstallDenyList[] = "extensions.install.denylist"; | 
| 1190 | 1190 | 
| 1191 const char kExtensionNotificationsInitializedPref[] = | |
| 
asargent_no_longer_on_chrome
2011/10/07 21:25:34
nit: include a brief comment here about what this
 | |
| 1192 "extensions.notifications.initialized"; | |
| 1193 | |
| 1191 // A list containing extensions that Chrome will silently install | 1194 // A list containing extensions that Chrome will silently install | 
| 1192 // at startup time. It is a list of strings, each string contains | 1195 // at startup time. It is a list of strings, each string contains | 
| 1193 // an extension ID and an update URL, delimited by a semicolon. | 1196 // an extension ID and an update URL, delimited by a semicolon. | 
| 1194 // This preference is set by an admin policy, and meant to be only | 1197 // This preference is set by an admin policy, and meant to be only | 
| 1195 // accessed through ExternalPolicyExtensionProvider. | 1198 // accessed through ExternalPolicyExtensionProvider. | 
| 1196 const char kExtensionInstallForceList[] = "extensions.install.forcelist"; | 1199 const char kExtensionInstallForceList[] = "extensions.install.forcelist"; | 
| 1197 | 1200 | 
| 1198 // Time of the last, and next scheduled, extensions auto-update checks. | 1201 // Time of the last, and next scheduled, extensions auto-update checks. | 
| 1199 const char kLastExtensionsUpdateCheck[] = "extensions.autoupdate.last_check"; | 1202 const char kLastExtensionsUpdateCheck[] = "extensions.autoupdate.last_check"; | 
| 1200 const char kNextExtensionsUpdateCheck[] = "extensions.autoupdate.next_check"; | 1203 const char kNextExtensionsUpdateCheck[] = "extensions.autoupdate.next_check"; | 
| (...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1583 // specified. | 1586 // specified. | 
| 1584 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 1587 const char kCustomHandlersEnabled[] = "custom_handlers.enabled"; | 
| 1585 | 1588 | 
| 1586 // Integers that specify the policy refresh rate for device- and user-policy in | 1589 // Integers that specify the policy refresh rate for device- and user-policy in | 
| 1587 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 1590 // milliseconds. Not all values are meaningful, so it is clamped to a sane range | 
| 1588 // by the cloud policy subsystem. | 1591 // by the cloud policy subsystem. | 
| 1589 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 1592 const char kDevicePolicyRefreshRate[] = "policy.device_refresh_rate"; | 
| 1590 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 1593 const char kUserPolicyRefreshRate[] = "policy.user_refresh_rate"; | 
| 1591 | 1594 | 
| 1592 } // namespace prefs | 1595 } // namespace prefs | 
| OLD | NEW |