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

Unified Diff: chrome/browser/browser.cc

Issue 18017: Fix focus on location bar when opening new tab in app mode (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 11 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser.cc
===================================================================
--- chrome/browser/browser.cc (revision 7816)
+++ chrome/browser/browser.cc (working copy)
@@ -657,6 +657,11 @@
Browser* b = GetOrCreateTabbedBrowser();
b->AddBlankTab(true);
b->window()->Show();
+ // The call to AddBlankTab above did not set the focus to the tab as its
+ // window was not active, so we have to do it explicitly.
+ // See http://crbug.com/6380.
+ TabContents* tab = b->GetSelectedTabContents();
+ tab->RestoreFocus();
}
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698