| Index: content/browser/tab_contents/interstitial_page_impl.cc
|
| diff --git a/content/browser/tab_contents/interstitial_page_impl.cc b/content/browser/tab_contents/interstitial_page_impl.cc
|
| index 8a91f424ba7648759dc351cf3b1fc03a7b21eccb..0894673ace1f9b7b6f9ab7e632dc0a1cd54fd339 100644
|
| --- a/content/browser/tab_contents/interstitial_page_impl.cc
|
| +++ b/content/browser/tab_contents/interstitial_page_impl.cc
|
| @@ -42,6 +42,7 @@ using content::NavigationController;
|
| using content::NavigationEntry;
|
| using content::NavigationEntryImpl;
|
| using content::RenderViewHostDelegate;
|
| +using content::RenderWidgetHostViewPort;
|
| using content::SiteInstance;
|
| using content::WebContents;
|
| using content::WebContentsView;
|
| @@ -273,7 +274,7 @@ void InterstitialPageImpl::Hide() {
|
| // (Note that in unit-tests the RVH may not have a view).
|
| if (render_view_host_->view() && render_view_host_->view()->HasFocus() &&
|
| tab_->GetRenderViewHost()->view()) {
|
| - RenderWidgetHostViewBase::FromRWHV(
|
| + RenderWidgetHostViewPort::FromRWHV(
|
| tab_->GetRenderViewHost()->view())->Focus();
|
| }
|
|
|
| @@ -595,7 +596,7 @@ void InterstitialPageImpl::SetSize(const gfx::Size& size) {
|
|
|
| void InterstitialPageImpl::Focus() {
|
| // Focus the native window.
|
| - RenderWidgetHostViewBase::FromRWHV(render_view_host_->view())->Focus();
|
| + RenderWidgetHostViewPort::FromRWHV(render_view_host_->view())->Focus();
|
| }
|
|
|
| void InterstitialPageImpl::FocusThroughTabTraversal(bool reverse) {
|
|
|