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

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

Issue 40053002: Implements the dialog view for logout button tray in public sessions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Immediately reflect duration updates Created 7 years, 1 month 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/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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698