| Index: chrome/browser/ui/browser.cc
|
| diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc
|
| index 89019ff75f3d59a3aa91eaf60ddb8e0c5124d132..a96a9a426fb44174545a2d8c4ee8fee936a02b9d 100644
|
| --- a/chrome/browser/ui/browser.cc
|
| +++ b/chrome/browser/ui/browser.cc
|
| @@ -224,6 +224,7 @@ using content::SiteInstance;
|
| using content::SSLStatus;
|
| using content::UserMetricsAction;
|
| using content::WebContents;
|
| +using extensions::Extension;
|
|
|
| ///////////////////////////////////////////////////////////////////////////////
|
|
|
| @@ -4162,10 +4163,11 @@ void Browser::Observe(int type,
|
|
|
| // Close any tabs from the unloaded extension, unless it's terminated,
|
| // in which case let the sad tabs remain.
|
| - if (content::Details<UnloadedExtensionInfo>(details)->reason !=
|
| - extension_misc::UNLOAD_REASON_TERMINATE) {
|
| + if (content::Details<extensions::UnloadedExtensionInfo>(
|
| + details)->reason != extension_misc::UNLOAD_REASON_TERMINATE) {
|
| const Extension* extension =
|
| - content::Details<UnloadedExtensionInfo>(details)->extension;
|
| + content::Details<extensions::UnloadedExtensionInfo>(
|
| + details)->extension;
|
| for (int i = tab_strip_model_->count() - 1; i >= 0; --i) {
|
| WebContents* tc =
|
| tab_strip_model_->GetTabContentsAt(i)->web_contents();
|
|
|