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

Unified Diff: chrome/browser/ui/gtk/browser_window_gtk.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 | « chrome/browser/ui/gtk/browser_window_gtk.h ('k') | chrome/browser/ui/views/frame/browser_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/gtk/browser_window_gtk.cc
===================================================================
--- chrome/browser/ui/gtk/browser_window_gtk.cc (revision 224205)
+++ chrome/browser/ui/gtk/browser_window_gtk.cc (working copy)
@@ -790,6 +790,35 @@
toolbar_->GetLocationBarView()->SetStarred(is_starred);
}
+void BrowserWindowGtk::OnActiveTabChanged(WebContents* old_contents,
+ WebContents* new_contents,
+ int index,
+ int reason) {
+ TRACE_EVENT0("ui::gtk", "BrowserWindowGtk::ActiveTabChanged");
+ if (old_contents && !old_contents->IsBeingDestroyed())
+ old_contents->GetView()->StoreFocus();
+
+ // Update various elements that are interested in knowing the current
+ // WebContents.
+ UpdateDevToolsForContents(new_contents);
+ infobar_container_->ChangeInfoBarService(
+ InfoBarService::FromWebContents(new_contents));
+ contents_container_->SetTab(new_contents);
+
+ // TODO(estade): after we manage browser activation, add a check to make sure
+ // we are the active browser before calling RestoreFocus().
+ if (!browser_->tab_strip_model()->closing_all()) {
+ new_contents->GetView()->RestoreFocus();
+ FindTabHelper* find_tab_helper =
+ FindTabHelper::FromWebContents(new_contents);
+ if (find_tab_helper->find_ui_active())
+ browser_->GetFindBarController()->find_bar()->SetFocusAndSelection();
+ }
+
+ // Update all the UI bits.
+ UpdateTitleBar();
+ MaybeShowBookmarkBar(false);
+}
void BrowserWindowGtk::ZoomChangedForActiveTab(bool can_show_bubble) {
toolbar_->GetLocationBarView()->ZoomChangedForActiveTab(
can_show_bubble && !toolbar_->IsWrenchMenuShowing());
@@ -1216,36 +1245,6 @@
contents_container_->DetachTab(contents);
}
-void BrowserWindowGtk::ActiveTabChanged(WebContents* old_contents,
- WebContents* new_contents,
- int index,
- int reason) {
- TRACE_EVENT0("ui::gtk", "BrowserWindowGtk::ActiveTabChanged");
- if (old_contents && !old_contents->IsBeingDestroyed())
- old_contents->GetView()->StoreFocus();
-
- // Update various elements that are interested in knowing the current
- // WebContents.
- UpdateDevToolsForContents(new_contents);
- infobar_container_->ChangeInfoBarService(
- InfoBarService::FromWebContents(new_contents));
- contents_container_->SetTab(new_contents);
-
- // TODO(estade): after we manage browser activation, add a check to make sure
- // we are the active browser before calling RestoreFocus().
- if (!browser_->tab_strip_model()->closing_all()) {
- new_contents->GetView()->RestoreFocus();
- FindTabHelper* find_tab_helper =
- FindTabHelper::FromWebContents(new_contents);
- if (find_tab_helper->find_ui_active())
- browser_->GetFindBarController()->find_bar()->SetFocusAndSelection();
- }
-
- // Update all the UI bits.
- UpdateTitleBar();
- MaybeShowBookmarkBar(false);
-}
-
void BrowserWindowGtk::ActiveWindowChanged(GdkWindow* active_window) {
// Do nothing if we're in the process of closing the browser window.
if (!window_)
« no previous file with comments | « chrome/browser/ui/gtk/browser_window_gtk.h ('k') | chrome/browser/ui/views/frame/browser_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698