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

Unified Diff: athena/system/system_ui_impl.cc

Issue 483033003: [Athena] Add status icons and system time to the centered home card (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 3 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
Index: athena/system/system_ui_impl.cc
diff --git a/athena/system/system_ui_impl.cc b/athena/system/system_ui_impl.cc
index 7e4ee5bd47d45fafe3f524ca55a13c51861e51a9..0e4043858a27b83b62d9919ef32585586fcc2420 100644
--- a/athena/system/system_ui_impl.cc
+++ b/athena/system/system_ui_impl.cc
@@ -58,12 +58,12 @@ class SystemUIImpl : public SystemUI {
background_controller_->SetImage(image);
}
- virtual views::View* CreateTimeView() OVERRIDE {
- return new TimeView;
+ virtual views::View* CreateTimeView(ColorScheme color_scheme) OVERRIDE {
+ return new TimeView(color_scheme);
}
- virtual views::View* CreateStatusIconView() OVERRIDE {
- return new StatusIconContainerView(system_modal_container_);
+ virtual views::View* CreateStatusIconView(ColorScheme color_scheme) OVERRIDE {
+ return new StatusIconContainerView(color_scheme, system_modal_container_);
}
private:

Powered by Google App Engine
This is Rietveld 408576698