| 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:
|
|
|