Chromium Code Reviews| Index: chrome/browser/ui/webui/extensions/extension_settings_handler.cc |
| diff --git a/chrome/browser/ui/webui/extensions/extension_settings_handler.cc b/chrome/browser/ui/webui/extensions/extension_settings_handler.cc |
| index d9fffda9a0f4b3723e519f17af270d56cb0e11e2..90e774128291e40fd9ee4a0641b7c2a88d39deaf 100644 |
| --- a/chrome/browser/ui/webui/extensions/extension_settings_handler.cc |
| +++ b/chrome/browser/ui/webui/extensions/extension_settings_handler.cc |
| @@ -192,7 +192,8 @@ base::DictionaryValue* ExtensionSettingsHandler::CreateExtensionDetailValue( |
| ManifestURL::GetHomepageURL(extension).is_valid()); |
| string16 location_text; |
| - if (extension->location() == Manifest::EXTERNAL_POLICY_DOWNLOAD) { |
| + if (extension->location() == Manifest::EXTERNAL_POLICY || |
| + extension->location() == Manifest::EXTERNAL_POLICY_DOWNLOAD) { |
|
not at google - send to devlin
2013/09/23 21:17:32
there is a lot of this. perhaps add Manifest::IsPo
bartfab (slow)
2013/09/26 14:29:54
Done.
|
| location_text = l10n_util::GetStringUTF16( |
| IDS_OPTIONS_INSTALL_LOCATION_ENTERPRISE); |
| } else if (extension->location() == Manifest::INTERNAL && |