diff options
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/browser/views/tab_contents/native_tab_contents_container_gtk.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome/browser/views/tab_contents/native_tab_contents_container_gtk.cc b/chrome/browser/views/tab_contents/native_tab_contents_container_gtk.cc index 3ff5d2e..08495fc 100644 --- a/chrome/browser/views/tab_contents/native_tab_contents_container_gtk.cc +++ b/chrome/browser/views/tab_contents/native_tab_contents_container_gtk.cc @@ -167,10 +167,11 @@ void NativeTabContentsContainerGtk::AboutToRequestFocusFromTabTraversal( return; // Give an opportunity to the tab to reset its focus. if (container_->tab_contents()->interstitial_page()) { - container_->tab_contents()->interstitial_page()->SetInitialFocus(reverse); + container_->tab_contents()->interstitial_page()->FocusThroughTabTraversal( + reverse); return; } - container_->tab_contents()->SetInitialFocus(reverse); + container_->tab_contents()->FocusThroughTabTraversal(reverse); } bool NativeTabContentsContainerGtk::GetAccessibleRole( |