OLD | NEW |
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/system/tray/system_tray_notifier.h" | 5 #include "ash/system/tray/system_tray_notifier.h" |
6 | 6 |
7 #if defined(OS_CHROMEOS) | 7 #if defined(OS_CHROMEOS) |
8 #include "ash/system/chromeos/network/network_state_notifier.h" | 8 #include "ash/system/chromeos/network/network_state_notifier.h" |
9 #endif | 9 #endif |
10 | 10 |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 ime_observers_, | 225 ime_observers_, |
226 OnIMERefresh(show_message)); | 226 OnIMERefresh(show_message)); |
227 } | 227 } |
228 | 228 |
229 void SystemTrayNotifier::NotifyShowLoginButtonChanged(bool show_login_button) { | 229 void SystemTrayNotifier::NotifyShowLoginButtonChanged(bool show_login_button) { |
230 FOR_EACH_OBSERVER(LogoutButtonObserver, | 230 FOR_EACH_OBSERVER(LogoutButtonObserver, |
231 logout_button_observers_, | 231 logout_button_observers_, |
232 OnShowLogoutButtonInTrayChanged(show_login_button)); | 232 OnShowLogoutButtonInTrayChanged(show_login_button)); |
233 } | 233 } |
234 | 234 |
| 235 void SystemTrayNotifier::NotifyLogoutDialogDurationChanged(int duration) { |
| 236 FOR_EACH_OBSERVER(LogoutButtonObserver, |
| 237 logout_button_observers_, |
| 238 OnLogoutDialogDurationChanged(duration)); |
| 239 } |
| 240 |
235 void SystemTrayNotifier::NotifyLocaleChanged( | 241 void SystemTrayNotifier::NotifyLocaleChanged( |
236 LocaleObserver::Delegate* delegate, | 242 LocaleObserver::Delegate* delegate, |
237 const std::string& cur_locale, | 243 const std::string& cur_locale, |
238 const std::string& from_locale, | 244 const std::string& from_locale, |
239 const std::string& to_locale) { | 245 const std::string& to_locale) { |
240 FOR_EACH_OBSERVER( | 246 FOR_EACH_OBSERVER( |
241 LocaleObserver, | 247 LocaleObserver, |
242 locale_observers_, | 248 locale_observers_, |
243 OnLocaleChanged(delegate, cur_locale, from_locale, to_locale)); | 249 OnLocaleChanged(delegate, cur_locale, from_locale, to_locale)); |
244 } | 250 } |
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
307 } | 313 } |
308 | 314 |
309 void SystemTrayNotifier::NotifyScreenShareStop() { | 315 void SystemTrayNotifier::NotifyScreenShareStop() { |
310 FOR_EACH_OBSERVER(ScreenShareObserver, screen_share_observers_, | 316 FOR_EACH_OBSERVER(ScreenShareObserver, screen_share_observers_, |
311 OnScreenShareStop()); | 317 OnScreenShareStop()); |
312 } | 318 } |
313 | 319 |
314 #endif // OS_CHROMEOS | 320 #endif // OS_CHROMEOS |
315 | 321 |
316 } // namespace ash | 322 } // namespace ash |
OLD | NEW |