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

Unified Diff: ash/system/date/date_view.cc

Issue 103493005: Rename View::set_focusable and View::set_accessibility_focusable (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added a few missing files Created 7 years 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 | « ash/system/chromeos/audio/tray_audio.cc ('k') | ash/system/tray/actionable_view.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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() {
« no previous file with comments | « ash/system/chromeos/audio/tray_audio.cc ('k') | ash/system/tray/actionable_view.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698