Commit 0d28d30a authored by Alan Cutter's avatar Alan Cutter Committed by Commit Bot

Make F6 focus location bar before tab strip

Bug: 927004
Change-Id: I4b65258c0c4caad79ddc8f721035898ead38ec88
Reviewed-on: https://chromium-review.googlesource.com/c/1460996Reviewed-by: default avatarCollin Baker <collinbaker@chromium.org>
Reviewed-by: default avatarScott Violet <sky@chromium.org>
Auto-Submit: Alan Cutter <alancutter@chromium.org>
Commit-Queue: Scott Violet <sky@chromium.org>
Cr-Commit-Position: refs/heads/master@{#630637}
parent 0f751c73
...@@ -2279,9 +2279,9 @@ void BrowserView::GetAccessiblePanes(std::vector<views::View*>* panes) { ...@@ -2279,9 +2279,9 @@ void BrowserView::GetAccessiblePanes(std::vector<views::View*>* panes) {
// (Windows) or Ctrl+Back/Forward (Chrome OS). If one of these is // (Windows) or Ctrl+Back/Forward (Chrome OS). If one of these is
// invisible or has no focusable children, it will be automatically // invisible or has no focusable children, it will be automatically
// skipped. // skipped.
panes->push_back(toolbar_button_provider_->GetAsAccessiblePaneView());
if (tabstrip_) if (tabstrip_)
panes->push_back(tabstrip_); panes->push_back(tabstrip_);
panes->push_back(toolbar_button_provider_->GetAsAccessiblePaneView());
if (bookmark_bar_view_.get()) if (bookmark_bar_view_.get())
panes->push_back(bookmark_bar_view_.get()); panes->push_back(bookmark_bar_view_.get());
if (infobar_container_) if (infobar_container_)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment