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

Side by Side Diff: ash/system/tray/system_tray_notifier.h

Issue 12564007: Hook up system clock update dbus signal to chrome and ash tray ui. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix browser_tests by adding MockSystemClockClient. Created 7 years, 9 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 | Annotate | Revision Log
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 #ifndef ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ 5 #ifndef ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_
6 #define ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ 6 #define ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 void NotifyAccessibilityModeChanged( 100 void NotifyAccessibilityModeChanged(
101 AccessibilityNotificationVisibility notify); 101 AccessibilityNotificationVisibility notify);
102 void NotifyVolumeChanged(float level); 102 void NotifyVolumeChanged(float level);
103 void NotifyMuteToggled(); 103 void NotifyMuteToggled();
104 void NotifyRefreshBluetooth(); 104 void NotifyRefreshBluetooth();
105 void NotifyBluetoothDiscoveringChanged(); 105 void NotifyBluetoothDiscoveringChanged();
106 void NotifyBrightnessChanged(double level, bool user_initialted); 106 void NotifyBrightnessChanged(double level, bool user_initialted);
107 void NotifyCapsLockChanged(bool enabled, bool search_mapped_to_caps_lock); 107 void NotifyCapsLockChanged(bool enabled, bool search_mapped_to_caps_lock);
108 void NotifyRefreshClock(); 108 void NotifyRefreshClock();
109 void NotifyDateFormatChanged(); 109 void NotifyDateFormatChanged();
110 void NotifySystemClockTimeUpdated();
110 void NotifyRefreshDrive(DriveOperationStatusList& list); 111 void NotifyRefreshDrive(DriveOperationStatusList& list);
111 void NotifyRefreshIME(bool show_message); 112 void NotifyRefreshIME(bool show_message);
112 void NotifyShowLoginButtonChanged(bool show_login_button); 113 void NotifyShowLoginButtonChanged(bool show_login_button);
113 void NotifyLocaleChanged(LocaleObserver::Delegate* delegate, 114 void NotifyLocaleChanged(LocaleObserver::Delegate* delegate,
114 const std::string& cur_locale, 115 const std::string& cur_locale,
115 const std::string& from_locale, 116 const std::string& from_locale,
116 const std::string& to_locale); 117 const std::string& to_locale);
117 void NotifyPowerStatusChanged(const PowerSupplyStatus& power_status); 118 void NotifyPowerStatusChanged(const PowerSupplyStatus& power_status);
118 void NotifySessionStartTimeChanged(const base::Time& session_start_time); 119 void NotifySessionStartTimeChanged(const base::Time& session_start_time);
119 void NotifySessionLengthLimitChanged(const base::TimeDelta& limit); 120 void NotifySessionLengthLimitChanged(const base::TimeDelta& limit);
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 ObserverList<SmsObserver> sms_observers_; 156 ObserverList<SmsObserver> sms_observers_;
156 ObserverList<EnterpriseDomainObserver> enterprise_domain_observers_; 157 ObserverList<EnterpriseDomainObserver> enterprise_domain_observers_;
157 #endif 158 #endif
158 159
159 DISALLOW_COPY_AND_ASSIGN(SystemTrayNotifier); 160 DISALLOW_COPY_AND_ASSIGN(SystemTrayNotifier);
160 }; 161 };
161 162
162 } // namespace ash 163 } // namespace ash
163 164
164 #endif // ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_ 165 #endif // ASH_SYSTEM_TRAY_SYSTEM_TRAY_NOTIFIER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698