| Index: chrome/browser/extensions/extension_service.cc
|
| diff --git a/chrome/browser/extensions/extension_service.cc b/chrome/browser/extensions/extension_service.cc
|
| index 500e5b80fd08659e88ecde78193050ba3c16b45c..b131c85870f44ca4f1e3feb799db89e2f5d8d476 100644
|
| --- a/chrome/browser/extensions/extension_service.cc
|
| +++ b/chrome/browser/extensions/extension_service.cc
|
| @@ -2475,8 +2475,10 @@ void ExtensionService::OnExtensionInstalled(
|
|
|
| // Certain extension locations are specific enough that we can
|
| // auto-acknowledge any extension that came from one of them.
|
| - if (extension->location() == Manifest::EXTERNAL_POLICY_DOWNLOAD)
|
| + if (extension->location() == Manifest::EXTERNAL_POLICY ||
|
| + extension->location() == Manifest::EXTERNAL_POLICY_DOWNLOAD) {
|
| AcknowledgeExternalExtension(extension->id());
|
| + }
|
| const Extension::State initial_state =
|
| initial_enable ? Extension::ENABLED : Extension::DISABLED;
|
| if (ShouldDelayExtensionUpdate(id, wait_for_idle)) {
|
|
|