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

Side by Side Diff: chrome/browser/browser_navigator.cc

Issue 4534002: Fix showing some foreground tabs. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Merge with trunk. 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/ui/browser.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/browser_navigator.h" 5 #include "chrome/browser/browser_navigator.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "chrome/browser/browser.h" 8 #include "chrome/browser/browser.h"
9 #include "chrome/browser/browser_list.h" 9 #include "chrome/browser/browser_list.h"
10 #include "chrome/browser/browser_url_handler.h" 10 #include "chrome/browser/browser_url_handler.h"
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 if (params->browser->profile()->IsOffTheRecord() && 178 if (params->browser->profile()->IsOffTheRecord() &&
179 params->disposition == OFF_THE_RECORD) { 179 params->disposition == OFF_THE_RECORD) {
180 params->disposition = NEW_FOREGROUND_TAB; 180 params->disposition = NEW_FOREGROUND_TAB;
181 } 181 }
182 182
183 // Disposition trumps add types. ADD_SELECTED is a default, so we need to 183 // Disposition trumps add types. ADD_SELECTED is a default, so we need to
184 // remove it if disposition implies the tab is going to open in the 184 // remove it if disposition implies the tab is going to open in the
185 // background. 185 // background.
186 if (params->disposition == NEW_BACKGROUND_TAB) 186 if (params->disposition == NEW_BACKGROUND_TAB)
187 params->tabstrip_add_types &= ~TabStripModel::ADD_SELECTED; 187 params->tabstrip_add_types &= ~TabStripModel::ADD_SELECTED;
188 else if (params->disposition == NEW_FOREGROUND_TAB)
189 params->tabstrip_add_types |= TabStripModel::ADD_SELECTED;
188 190
189 // Code that wants to open a new window typically expects it to be shown 191 // Code that wants to open a new window typically expects it to be shown
190 // automatically. 192 // automatically.
191 if (params->disposition == NEW_WINDOW || params->disposition == NEW_POPUP) { 193 if (params->disposition == NEW_WINDOW || params->disposition == NEW_POPUP) {
192 params->show_window = true; 194 params->show_window = true;
193 params->tabstrip_add_types |= TabStripModel::ADD_SELECTED; 195 params->tabstrip_add_types |= TabStripModel::ADD_SELECTED;
194 } 196 }
195 } 197 }
196 198
197 // This class makes sure the Browser object held in |params| is made visible 199 // This class makes sure the Browser object held in |params| is made visible
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
373 params->transition, 375 params->transition,
374 params->tabstrip_add_types); 376 params->tabstrip_add_types);
375 // Now that the |params->target_contents| is safely owned by the target 377 // Now that the |params->target_contents| is safely owned by the target
376 // Browser's TabStripModel, we can release ownership. 378 // Browser's TabStripModel, we can release ownership.
377 target_contents_owner.ReleaseOwnership(); 379 target_contents_owner.ReleaseOwnership();
378 } 380 }
379 } 381 }
380 } 382 }
381 383
382 } // namespace browser 384 } // namespace browser
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/browser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698