| 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 654db01b58e0e6597338f64cb15775685d10990a..6b73c3981d8e0010ab462768212032302f290bfc 100644
|
| --- a/chrome/browser/ui/views/extensions/extension_popup.cc
|
| +++ b/chrome/browser/ui/views/extensions/extension_popup.cc
|
| @@ -17,6 +17,7 @@
|
| #include "chrome/common/extensions/extension.h"
|
| #include "content/browser/renderer_host/render_view_host.h"
|
| #include "content/browser/renderer_host/render_widget_host_view.h"
|
| +#include "content/browser/tab_contents/tab_contents.h"
|
| #include "content/public/browser/notification_details.h"
|
| #include "content/public/browser/notification_source.h"
|
| #include "views/widget/root_view.h"
|
| @@ -95,7 +96,7 @@ void ExtensionPopup::BubbleBrowserWindowClosing(BrowserBubble* bubble) {
|
|
|
| void ExtensionPopup::BubbleGotFocus(BrowserBubble* bubble) {
|
| // Forward the focus to the renderer.
|
| - host()->render_view_host()->view()->Focus();
|
| + host()->host_contents()->Focus();
|
| }
|
|
|
| void ExtensionPopup::BubbleLostFocus(BrowserBubble* bubble,
|
|
|