| Index: chrome/browser/extensions/extension_disabled_infobar_delegate.cc
|
| diff --git a/chrome/browser/extensions/extension_disabled_infobar_delegate.cc b/chrome/browser/extensions/extension_disabled_infobar_delegate.cc
|
| index bdcdfbd4d3866d06edb9798348eb66a37cc4e85f..6dbd444786c310ba51304f068b1fb7c567eab72c 100644
|
| --- a/chrome/browser/extensions/extension_disabled_infobar_delegate.cc
|
| +++ b/chrome/browser/extensions/extension_disabled_infobar_delegate.cc
|
| @@ -162,8 +162,8 @@ void ExtensionDisabledInfobarDelegate::Observe(
|
| } else {
|
| DCHECK_EQ(chrome::NOTIFICATION_EXTENSION_UNLOADED, type);
|
| UnloadedExtensionInfo* info = Details<UnloadedExtensionInfo>(details).ptr();
|
| - if (info->reason == UnloadedExtensionInfo::DISABLE ||
|
| - info->reason == UnloadedExtensionInfo::UNINSTALL)
|
| + if (info->reason == extension_misc::UNLOAD_REASON_DISABLE ||
|
| + info->reason == extension_misc::UNLOAD_REASON_UNINSTALL)
|
| extension = info->extension;
|
| }
|
| if (extension == extension_)
|
|
|