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

Unified Diff: chrome/browser/chromeos/status/status_area_view.cc

Issue 4154002: New statusbar images for ChromeOS (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 2 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/chromeos/status/status_area_button.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/status/status_area_view.cc
===================================================================
--- chrome/browser/chromeos/status/status_area_view.cc (revision 63751)
+++ chrome/browser/chromeos/status/status_area_view.cc (working copy)
@@ -17,7 +17,7 @@
namespace chromeos {
// Number of pixels to separate each icon.
-const int kSeparation = 6;
+const int kSeparation = 3;
StatusAreaView::StatusAreaView(StatusAreaHost* host)
: host_(host),
@@ -29,6 +29,10 @@
}
void StatusAreaView::Init() {
+ // Clock.
+ clock_view_ = new ClockMenuButton(host_);
+ AddChildView(clock_view_);
+
// InputMethod.
input_method_view_ = new InputMethodMenuButton(host_);
AddChildView(input_method_view_);
@@ -44,10 +48,6 @@
// Power.
power_view_ = new PowerMenuButton();
AddChildView(power_view_);
-
- // Clock.
- clock_view_ = new ClockMenuButton(host_);
- AddChildView(clock_view_);
}
gfx::Size StatusAreaView::GetPreferredSize() {
@@ -80,7 +80,8 @@
// Put next in row horizontally, and center vertically.
cur->SetBounds(cur_x, cur_y, cur_size.width(), cur_size.height());
- cur_x += cur_size.width() + kSeparation;
+ if (cur_size.width() > 0)
+ cur_x += cur_size.width() + kSeparation;
}
}
}
« no previous file with comments | « chrome/browser/chromeos/status/status_area_button.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698