Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(74)

Unified Diff: chrome/browser/ui/browser.cc

Issue 23536075: Fix multiple problems with omnibox text handling across focus changes. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/ui/browser_window.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/browser.cc
===================================================================
--- chrome/browser/ui/browser.cc (revision 224205)
+++ chrome/browser/ui/browser.cc (working copy)
@@ -1053,6 +1053,22 @@
int reason) {
content::RecordAction(UserMetricsAction("ActiveTabChanged"));
+ // Switch the find bar to the new tab if necessary. This must be done before
+ // changing focus for unittests to pass.
+ // TODO(pkasting): http://crbug.com/297385 Move this to near the end of this
+ // function (where it used to be) once the find bar properly restores
+ // selections across tab changes.
+ if (HasFindBarController()) {
+ find_bar_controller_->ChangeWebContents(new_contents);
+ find_bar_controller_->find_bar()->MoveWindowIfNecessary(gfx::Rect(), true);
+ }
+
+ // Let the BrowserWindow do its handling. On e.g. views this changes the
+ // focused object, which should happen before we update the toolbar below,
+ // since the omnibox expects the correct element to already be focused when it
+ // is updated.
+ window_->OnActiveTabChanged(old_contents, new_contents, index, reason);
+
// Discarded tabs always get reloaded.
if (tab_strip_model_->IsTabDiscarded(index)) {
LOG(WARNING) << "Reloading discarded tab at " << index;
@@ -1088,11 +1104,6 @@
tab_strip_model_->GetActiveWebContents())->GetStatusText());
}
- if (HasFindBarController()) {
- find_bar_controller_->ChangeWebContents(new_contents);
- find_bar_controller_->find_bar()->MoveWindowIfNecessary(gfx::Rect(), true);
- }
-
// Update sessions. Don't force creation of sessions. If sessions doesn't
// exist, the change will be picked up by sessions when created.
SessionService* session_service =
« no previous file with comments | « no previous file | chrome/browser/ui/browser_window.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698