| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "chrome/browser/ui/ash/multi_user/multi_user_notification_blocker_chrom
eos.h" | 5 #include "chrome/browser/ui/ash/multi_user/multi_user_notification_blocker_chrom
eos.h" |
| 6 | 6 |
| 7 #include "ash/system/system_notifier.h" | 7 #include "ash/common/system/system_notifier.h" |
| 8 #include "chrome/browser/ui/ash/multi_user/multi_user_window_manager.h" | 8 #include "chrome/browser/ui/ash/multi_user/multi_user_window_manager.h" |
| 9 #include "components/signin/core/account_id/account_id.h" | 9 #include "components/signin/core/account_id/account_id.h" |
| 10 #include "ui/message_center/message_center.h" | 10 #include "ui/message_center/message_center.h" |
| 11 #include "ui/message_center/notifier_settings.h" | 11 #include "ui/message_center/notifier_settings.h" |
| 12 | 12 |
| 13 MultiUserNotificationBlockerChromeOS::MultiUserNotificationBlockerChromeOS( | 13 MultiUserNotificationBlockerChromeOS::MultiUserNotificationBlockerChromeOS( |
| 14 message_center::MessageCenter* message_center, | 14 message_center::MessageCenter* message_center, |
| 15 const AccountId& initial_account_id) | 15 const AccountId& initial_account_id) |
| 16 : NotificationBlocker(message_center), | 16 : NotificationBlocker(message_center), |
| 17 active_account_id_(initial_account_id) {} | 17 active_account_id_(initial_account_id) {} |
| (...skipping 30 matching lines...) Expand all Loading... |
| 48 iter->second != message_center()->IsQuietMode()) { | 48 iter->second != message_center()->IsQuietMode()) { |
| 49 message_center()->SetQuietMode(iter->second); | 49 message_center()->SetQuietMode(iter->second); |
| 50 } | 50 } |
| 51 NotifyBlockingStateChanged(); | 51 NotifyBlockingStateChanged(); |
| 52 } | 52 } |
| 53 | 53 |
| 54 bool MultiUserNotificationBlockerChromeOS::IsActive() const { | 54 bool MultiUserNotificationBlockerChromeOS::IsActive() const { |
| 55 return chrome::MultiUserWindowManager::GetMultiProfileMode() == | 55 return chrome::MultiUserWindowManager::GetMultiProfileMode() == |
| 56 chrome::MultiUserWindowManager::MULTI_PROFILE_MODE_SEPARATED; | 56 chrome::MultiUserWindowManager::MULTI_PROFILE_MODE_SEPARATED; |
| 57 } | 57 } |
| OLD | NEW |