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

Unified Diff: chrome/browser/cocoa/tab_strip_controller.mm

Issue 63022: Layout the tabs explicitly when creating a background tab. Update to correct ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 8 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/gtk/tabs/tab_strip_gtk.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/cocoa/tab_strip_controller.mm
===================================================================
--- chrome/browser/cocoa/tab_strip_controller.mm (revision 13152)
+++ chrome/browser/cocoa/tab_strip_controller.mm (working copy)
@@ -28,7 +28,8 @@
- (void)tabDetachedWithContents:(TabContents*)contents
atIndex:(NSInteger)index;
- (void)tabChangedWithContents:(TabContents*)contents
- atIndex:(NSInteger)index;
+ atIndex:(NSInteger)index
+ loadingOnly:(BOOL)loading;
@end
// A C++ bridge class to handle receiving notifications from the C++ tab
@@ -51,7 +52,8 @@
virtual void TabMoved(TabContents* contents,
int from_index,
int to_index);
- virtual void TabChangedAt(TabContents* contents, int index);
+ virtual void TabChangedAt(TabContents* contents, int index,
+ bool loading_only);
virtual void TabStripEmpty();
private:
@@ -274,9 +276,7 @@
[contentsController toggleBookmarkBar:YES];
[tabContentsArray_ insertObject:contentsController atIndex:index];
- // Make a new tab and add it to the strip. Keep track of its controller. We
- // don't call |-layoutTabs| here because it will get called when the new
- // tab is selected by the tab model.
+ // Make a new tab and add it to the strip. Keep track of its controller.
TabController* newController = [self newTab];
[tabArray_ insertObject:newController atIndex:index];
NSView* newView = [newController view];
@@ -284,9 +284,14 @@
[self setTabTitle:newController withContents:contents];
- // Select the newly created tab if in the foreground
- if (inForeground)
- [self swapInTabAtIndex:index];
+ // We don't need to call |-layoutTabs| if the tab will be in the foreground
+ // because it will get called when the new tab is selected by the tab model.
+ if (inForeground) {
+ // [self swapInTabAtIndex:index];
TVL 2009/04/06 20:08:12 why commented out?
pink (ping after 24hrs) 2009/04/06 20:13:46 oops, removing that code entirely.
+ } else {
+ [newController setSelected:NO];
+ [self layoutTabs];
+ }
}
// Called when a notification is received from the model to select a particular
@@ -344,7 +349,8 @@
// Called when a notification is received from the model that the given tab
// has been updated.
- (void)tabChangedWithContents:(TabContents*)contents
- atIndex:(NSInteger)index {
+ atIndex:(NSInteger)index
+ loadingOnly:(BOOL)loading {
[self setTabTitle:[tabArray_ objectAtIndex:index] withContents:contents];
TabContentsController* updatedController =
@@ -472,8 +478,11 @@
NOTIMPLEMENTED();
}
-void TabStripBridge::TabChangedAt(TabContents* contents, int index) {
- [controller_ tabChangedWithContents:contents atIndex:index];
+void TabStripBridge::TabChangedAt(TabContents* contents, int index,
+ bool loading_only) {
+ [controller_ tabChangedWithContents:contents
+ atIndex:index
+ loadingOnly:loading_only ? YES : NO];
}
void TabStripBridge::TabStripEmpty() {
« no previous file with comments | « no previous file | chrome/browser/gtk/tabs/tab_strip_gtk.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698