| Index: chrome/browser/ui/views/extensions/extension_popup.cc
|
| diff --git a/chrome/browser/ui/views/extensions/extension_popup.cc b/chrome/browser/ui/views/extensions/extension_popup.cc
|
| index ab5acf55e254af333393ac33632bd4afbd233ad8..1bec5209b1000a1224769cbebc8a41b0ea4fa228 100644
|
| --- a/chrome/browser/ui/views/extensions/extension_popup.cc
|
| +++ b/chrome/browser/ui/views/extensions/extension_popup.cc
|
| @@ -75,8 +75,8 @@ ExtensionPopup::ExtensionPopup(
|
| const int margin = views::BubbleBorder::GetCornerRadius() / 2;
|
| set_margins(gfx::Insets(margin, margin, margin, margin));
|
| SetLayoutManager(new views::FillLayout());
|
| - AddChildView(host->view());
|
| - host->view()->SetContainer(this);
|
| + AddChildView(host->extension_view());
|
| + host->extension_view()->SetContainer(this);
|
| // Use OnNativeFocusChange to check for child window activation on deactivate.
|
| set_close_on_deactivate(false);
|
| // Make the bubble move with its anchor (during inspection, etc.).
|
|
|