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

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

Issue 5075001: Fix omnibox update bug. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Add comment and save state for closing tabs too. Created 10 years, 1 month 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/ui/browser.cc
diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc
index 3d8f3c58817471e6b3de4e7720c35a2efc163ddc..805857232a1a7ae35bf21358f0999a3bc448ca80 100644
--- a/chrome/browser/ui/browser.cc
+++ b/chrome/browser/ui/browser.cc
@@ -4010,8 +4010,11 @@ void Browser::CloseFrame() {
void Browser::TabDetachedAtImpl(TabContents* contents, int index,
DetachType type) {
if (type == DETACH_TYPE_DETACH) {
- // Save what the user's currently typed.
- window_->GetLocationBar()->SaveStateToContents(contents);
+ // Save what the user has typed in the location bar. But do this only if the
Peter Kasting 2010/11/17 01:41:24 Nit: Might be clearer as: // Save the current loc
sadrul 2010/11/17 02:09:24 Done.
+ // selected tab is detaching, because what the user typed would have been
+ // for the selected tab.
+ if (contents == GetSelectedTabContents())
+ window_->GetLocationBar()->SaveStateToContents(contents);
if (!tab_handler_->GetTabStripModel()->closing_all())
SyncHistoryWithTabs(0);
« 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