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

Unified Diff: chrome/browser/views/tabs/tab_strip.cc

Issue 1700016: Two changes to extension app icons:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 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 | « chrome/browser/views/tabs/tab_strip.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/views/tabs/tab_strip.cc
===================================================================
--- chrome/browser/views/tabs/tab_strip.cc (revision 45537)
+++ chrome/browser/views/tabs/tab_strip.cc (working copy)
@@ -238,6 +238,9 @@
// static
const int TabStrip::mini_to_non_mini_gap_ = 3;
+// static
+const int TabStrip::extra_gap_for_nano_ = 10;
+
TabStrip::TabStrip(TabStripModel* model)
: model_(model),
resize_layout_factory_(this),
@@ -1076,9 +1079,11 @@
void TabStrip::GetDesiredTabWidths(int tab_count,
int mini_tab_count,
+ int nano_tab_count,
double* unselected_width,
double* selected_width) const {
DCHECK(tab_count >= 0 && mini_tab_count >= 0 && mini_tab_count <= tab_count);
+ DCHECK(nano_tab_count >= 0 && nano_tab_count <= tab_count);
const double min_unselected_width = Tab::GetMinimumUnselectedSize().width();
const double min_selected_width = Tab::GetMinimumSelectedSize().width();
@@ -1117,6 +1122,9 @@
}
// Account for gap between the last mini-tab and first non-mini-tab.
available_width -= mini_to_non_mini_gap_;
+ // And add some extra space if you have nano tabs in the mix.
+ if (nano_tab_count > 0)
+ available_width -= extra_gap_for_nano_;
}
// Calculate the desired tab widths by dividing the available space into equal
@@ -1176,7 +1184,8 @@
}
Tab* first_tab = GetTabAtTabDataIndex(mini_tab_count);
double unselected, selected;
- GetDesiredTabWidths(GetTabCount(), mini_tab_count, &unselected, &selected);
+ GetDesiredTabWidths(GetTabCount(), mini_tab_count, GetNanoTabCount(),
+ &unselected, &selected);
int w = Round(first_tab->IsSelected() ? selected : selected);
// We only want to run the animation if we're not already at the desired
@@ -1385,17 +1394,20 @@
int tab_count = GetTabCount();
int non_closing_tab_count = 0;
int mini_tab_count = 0;
+ int nano_tab_count = 0;
for (int i = 0; i < tab_count; ++i) {
if (!tab_data_[i].tab->closing()) {
++non_closing_tab_count;
if (tab_data_[i].tab->mini())
mini_tab_count++;
+ if (tab_data_[i].tab->app())
+ nano_tab_count++;
}
}
double unselected, selected;
- GetDesiredTabWidths(non_closing_tab_count, mini_tab_count, &unselected,
- &selected);
+ GetDesiredTabWidths(non_closing_tab_count, mini_tab_count, nano_tab_count,
+ &unselected, &selected);
current_unselected_width_ = unselected;
current_selected_width_ = selected;
@@ -1415,6 +1427,8 @@
if (last_was_mini) {
// Give a bigger gap between mini and non-mini tabs.
tab_x += mini_to_non_mini_gap_;
+ if (nano_tab_count > 0)
+ tab_x += extra_gap_for_nano_;
}
if (tab->IsSelected())
tab_width = selected;
@@ -1670,6 +1684,17 @@
return mini_count;
}
+int TabStrip::GetNanoTabCount() const {
+ int nano_count = 0;
+ for (size_t i = 0; i < tab_data_.size(); ++i) {
+ if (tab_data_[i].tab->app())
+ nano_count++;
+ else
+ return nano_count;
+ }
+ return nano_count;
+}
+
int TabStrip::GetAvailableWidthForTabs(Tab* last_tab) const {
return last_tab->x() + last_tab->width();
}
« no previous file with comments | « chrome/browser/views/tabs/tab_strip.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698