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

Side by Side Diff: ash/common/system/date/tray_date.cc

Issue 2162153002: Added Ash.SystemMenu.DefaultView.VisibleItems histogram. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed ash_unittests compile errors. Created 4 years, 5 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ash/common/system/date/tray_date.h" 5 #include "ash/common/system/date/tray_date.h"
6 6
7 #include "ash/common/shelf/wm_shelf_util.h" 7 #include "ash/common/shelf/wm_shelf_util.h"
8 #include "ash/common/system/date/date_default_view.h" 8 #include "ash/common/system/date/date_default_view.h"
9 #include "ash/common/system/date/date_view.h" 9 #include "ash/common/system/date/date_view.h"
10 #include "ash/common/system/tray/system_tray.h" 10 #include "ash/common/system/tray/system_tray.h"
11 #include "ash/common/system/tray/system_tray_notifier.h" 11 #include "ash/common/system/tray/system_tray_notifier.h"
12 #include "ash/common/system/tray/tray_item_view.h" 12 #include "ash/common/system/tray/tray_item_view.h"
13 #include "ash/common/wm_shell.h" 13 #include "ash/common/wm_shell.h"
14 14
15 #if defined(OS_CHROMEOS) 15 #if defined(OS_CHROMEOS)
16 #include "ash/common/system/chromeos/system_clock_observer.h" 16 #include "ash/common/system/chromeos/system_clock_observer.h"
17 #endif 17 #endif
18 18
19 namespace ash { 19 namespace ash {
20 20
21 TrayDate::TrayDate(SystemTray* system_tray) 21 TrayDate::TrayDate(SystemTray* system_tray)
22 : SystemTrayItem(system_tray), 22 : SystemTrayItem(system_tray, DATE_POWER_LOCK),
tdanderson 2016/07/19 21:58:39 Just DATE?
bruthig 2016/07/20 18:15:52 Done.
23 time_tray_(NULL), 23 time_tray_(NULL),
24 default_view_(NULL), 24 default_view_(NULL),
25 login_status_(LoginStatus::NOT_LOGGED_IN) { 25 login_status_(LoginStatus::NOT_LOGGED_IN) {
26 #if defined(OS_CHROMEOS) 26 #if defined(OS_CHROMEOS)
27 system_clock_observer_.reset(new SystemClockObserver()); 27 system_clock_observer_.reset(new SystemClockObserver());
28 #endif 28 #endif
29 WmShell::Get()->system_tray_notifier()->AddClockObserver(this); 29 WmShell::Get()->system_tray_notifier()->AddClockObserver(this);
30 } 30 }
31 31
32 TrayDate::~TrayDate() { 32 TrayDate::~TrayDate() {
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
121 can_set_time ? TrayDate::SET_SYSTEM_TIME : TrayDate::NONE); 121 can_set_time ? TrayDate::SET_SYSTEM_TIME : TrayDate::NONE);
122 } 122 }
123 } 123 }
124 124
125 void TrayDate::Refresh() { 125 void TrayDate::Refresh() {
126 if (time_tray_) 126 if (time_tray_)
127 time_tray_->UpdateText(); 127 time_tray_->UpdateText();
128 } 128 }
129 129
130 } // namespace ash 130 } // namespace ash
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698