| Index: ash/system/date/date_view.cc
|
| diff --git a/ash/system/date/date_view.cc b/ash/system/date/date_view.cc
|
| index ae4a54653085af9c2cd8c36e3f9da4ec582c0cf5..63f3af35ce94a5cd3300e0033f0cc6382945158f 100644
|
| --- a/ash/system/date/date_view.cc
|
| +++ b/ash/system/date/date_view.cc
|
| @@ -138,7 +138,7 @@ DateView::DateView()
|
| date_label_->SetEnabledColor(kHeaderTextColorNormal);
|
| UpdateTextInternal(base::Time::Now());
|
| AddChildView(date_label_);
|
| - set_focusable(actionable_);
|
| + SetFocusable(actionable_);
|
| }
|
|
|
| DateView::~DateView() {
|
| @@ -146,7 +146,7 @@ DateView::~DateView() {
|
|
|
| void DateView::SetActionable(bool actionable) {
|
| actionable_ = actionable;
|
| - set_focusable(actionable_);
|
| + SetFocusable(actionable_);
|
| }
|
|
|
| void DateView::UpdateTimeFormat() {
|
| @@ -196,7 +196,7 @@ TimeView::TimeView(TrayDate::ClockLayout clock_layout)
|
| SetupLabels();
|
| UpdateTextInternal(base::Time::Now());
|
| UpdateClockLayout(clock_layout);
|
| - set_focusable(false);
|
| + SetFocusable(false);
|
| }
|
|
|
| TimeView::~TimeView() {
|
|
|