| Index: chrome/browser/ui/views/extensions/extension_popup.h
|
| diff --git a/chrome/browser/ui/views/extensions/extension_popup.h b/chrome/browser/ui/views/extensions/extension_popup.h
|
| index dd22fcd5d3ecabb5600431b3427b0879c2cccfd5..bdd5147fa44ffbe7c78948438a0964d43eaa7d3e 100644
|
| --- a/chrome/browser/ui/views/extensions/extension_popup.h
|
| +++ b/chrome/browser/ui/views/extensions/extension_popup.h
|
| @@ -38,7 +38,7 @@ class ExtensionPopup : public views::BubbleDelegateView,
|
| views::View* anchor_view,
|
| views::BubbleBorder::ArrowLocation arrow_location);
|
|
|
| - ExtensionHost* host() const { return extension_host_.get(); }
|
| + extensions::ExtensionHost* host() const { return extension_host_.get(); }
|
|
|
| // content::NotificationObserver overrides.
|
| virtual void Observe(int type,
|
| @@ -63,7 +63,7 @@ class ExtensionPopup : public views::BubbleDelegateView,
|
|
|
| private:
|
| ExtensionPopup(Browser* browser,
|
| - ExtensionHost* host,
|
| + extensions::ExtensionHost* host,
|
| views::View* anchor_view,
|
| views::BubbleBorder::ArrowLocation arrow_location);
|
|
|
| @@ -73,7 +73,7 @@ class ExtensionPopup : public views::BubbleDelegateView,
|
| void CloseBubble();
|
|
|
| // The contained host for the view.
|
| - scoped_ptr<ExtensionHost> extension_host_;
|
| + scoped_ptr<extensions::ExtensionHost> extension_host_;
|
|
|
| // Flag used to indicate if the pop-up should open a devtools window once
|
| // it is shown inspecting it.
|
|
|