Home
last modified time | relevance | path

Searched refs:TrayDate (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/ash/system/date/
Dtray_date.cc156 TrayDate::TrayDate(SystemTray* system_tray) in TrayDate() function in ash::internal::TrayDate
166 TrayDate::~TrayDate() { in ~TrayDate()
170 views::View* TrayDate::GetHelpButtonView() const { in GetHelpButtonView()
176 views::View* TrayDate::CreateTrayView(user::LoginStatus status) { in CreateTrayView()
188 views::View* TrayDate::CreateDefaultView(user::LoginStatus status) { in CreateDefaultView()
193 views::View* TrayDate::CreateDetailedView(user::LoginStatus status) { in CreateDetailedView()
197 void TrayDate::DestroyTrayView() { in DestroyTrayView()
201 void TrayDate::DestroyDefaultView() { in DestroyDefaultView()
205 void TrayDate::DestroyDetailedView() { in DestroyDetailedView()
208 void TrayDate::UpdateAfterLoginStatusChange(user::LoginStatus status) { in UpdateAfterLoginStatusChange()
[all …]
Ddate_view_unittest.cc33 void CreateTimeView(TrayDate::ClockLayout clock_layout) { in CreateTimeView()
46 CreateTimeView(TrayDate::HORIZONTAL_CLOCK); in TEST_F()
52 time_view()->UpdateClockLayout(TrayDate::VERTICAL_CLOCK); in TEST_F()
58 time_view()->UpdateClockLayout(TrayDate::HORIZONTAL_CLOCK); in TEST_F()
Dtray_date.h28 class TrayDate : public SystemTrayItem,
35 explicit TrayDate(SystemTray* system_tray);
36 virtual ~TrayDate();
67 DISALLOW_COPY_AND_ASSIGN(TrayDate);
Ddate_view.h92 explicit TimeView(TrayDate::ClockLayout clock_layout);
99 void UpdateClockLayout(TrayDate::ClockLayout clock_layout);
113 void SetBorder(TrayDate::ClockLayout clock_layout);
Ddate_view.cc193 TimeView::TimeView(TrayDate::ClockLayout clock_layout) in TimeView()
250 void TimeView::UpdateClockLayout(TrayDate::ClockLayout clock_layout){ in UpdateClockLayout()
252 if (clock_layout == TrayDate::HORIZONTAL_CLOCK) { in UpdateClockLayout()
277 void TimeView::SetBorder(TrayDate::ClockLayout clock_layout) { in SetBorder()
278 if (clock_layout == TrayDate::HORIZONTAL_CLOCK) in SetBorder()
/external/chromium_org/ash/system/tray/
Dsystem_tray.h30 class TrayDate; variable
240 internal::TrayDate* tray_date_;
Dsystem_tray.cc180 tray_date_ = new internal::TrayDate(this); in CreateItems()