Chromium Code Reviews| Index: chrome/common/pref_names.cc |
| diff --git a/chrome/common/pref_names.cc b/chrome/common/pref_names.cc |
| index eece5eb62a8a99984546ae59c251e176d5383896..e1bcdf4b93ec2de42e3e9c6687e5b8d45ece4987 100644 |
| --- a/chrome/common/pref_names.cc |
| +++ b/chrome/common/pref_names.cc |
| @@ -1707,7 +1707,7 @@ const char kExtensionAlertsInitializedPref[] = "extensions.alerts.initialized"; |
| const char kExtensionAllowedInstallSites[] = "extensions.allowed_install_sites"; |
| // A list of allowed extension types. Extensions can only be installed if their |
| -// type is on this whitelist or alternatively on kExtensionInstallAllowList or |
| +// type is on this whitelisted or alternatively on kExtensionInstallAllowList or |
|
Joao da Silva
2013/12/29 23:25:28
The previous sentence looks better to me
Sergey Ulanov
2014/01/06 23:21:55
Done.
|
| // kExtensionInstallForceList. |
| const char kExtensionAllowedTypes[] = "extensions.allowed_types"; |
| @@ -2679,4 +2679,9 @@ const char kOsPasswordLastChanged[] = |
| // Whether DNS Quick Check is disabled in proxy resolution. |
| const char kQuickCheckEnabled[] = "proxy.quick_check_enabled"; |
| + |
| +// Whitelist of Native Messaging Hosts. |
| +const char kNativeMessagingBlacklist[] = "native_messaging.blacklist"; |
| +const char kNativeMessagingWhitelist[] = "native_messaging.whitelist"; |
|
Joao da Silva
2013/12/29 23:25:28
Same about the order; this should be above line 12
Sergey Ulanov
2014/01/06 23:21:55
Done.
|
| + |
| } // namespace prefs |