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

Unified Diff: ash/common/system/tray/system_tray_notifier.cc

Issue 2734653002: chromeos: Move files in //ash/common to //ash (Closed)
Patch Set: fix a11y tests, fix docs Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/common/system/tray/system_tray_notifier.h ('k') | ash/common/system/tray/system_tray_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/system/tray/system_tray_notifier.cc
diff --git a/ash/common/system/tray/system_tray_notifier.cc b/ash/common/system/tray/system_tray_notifier.cc
deleted file mode 100644
index bfff62a7b00db2e8a51215ac834e2fdd5e2067ed..0000000000000000000000000000000000000000
--- a/ash/common/system/tray/system_tray_notifier.cc
+++ /dev/null
@@ -1,299 +0,0 @@
-// Copyright 2016 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "ash/common/system/tray/system_tray_notifier.h"
-
-#include "ash/common/system/accessibility_observer.h"
-#include "ash/common/system/chromeos/bluetooth/bluetooth_observer.h"
-#include "ash/common/system/chromeos/enterprise/enterprise_domain_observer.h"
-#include "ash/common/system/chromeos/network/network_observer.h"
-#include "ash/common/system/chromeos/network/network_portal_detector_observer.h"
-#include "ash/common/system/chromeos/screen_security/screen_capture_observer.h"
-#include "ash/common/system/chromeos/screen_security/screen_share_observer.h"
-#include "ash/common/system/chromeos/session/last_window_closed_observer.h"
-#include "ash/common/system/chromeos/session/logout_button_observer.h"
-#include "ash/common/system/chromeos/session/session_length_limit_observer.h"
-#include "ash/common/system/chromeos/tray_tracing.h"
-#include "ash/common/system/chromeos/virtual_keyboard/virtual_keyboard_observer.h"
-#include "ash/common/system/date/clock_observer.h"
-#include "ash/common/system/ime/ime_observer.h"
-#include "ash/common/system/user/user_observer.h"
-
-namespace ash {
-
-SystemTrayNotifier::SystemTrayNotifier() {}
-
-SystemTrayNotifier::~SystemTrayNotifier() {}
-
-void SystemTrayNotifier::AddAccessibilityObserver(
- AccessibilityObserver* observer) {
- accessibility_observers_.AddObserver(observer);
-}
-
-void SystemTrayNotifier::RemoveAccessibilityObserver(
- AccessibilityObserver* observer) {
- accessibility_observers_.RemoveObserver(observer);
-}
-
-void SystemTrayNotifier::NotifyAccessibilityModeChanged(
- AccessibilityNotificationVisibility notify) {
- for (auto& observer : accessibility_observers_)
- observer.OnAccessibilityModeChanged(notify);
-}
-
-void SystemTrayNotifier::AddBluetoothObserver(BluetoothObserver* observer) {
- bluetooth_observers_.AddObserver(observer);
-}
-
-void SystemTrayNotifier::RemoveBluetoothObserver(BluetoothObserver* observer) {
- bluetooth_observers_.RemoveObserver(observer);
-}
-
-void SystemTrayNotifier::NotifyRefreshBluetooth() {
- for (auto& observer : bluetooth_observers_)
- observer.OnBluetoothRefresh();
-}
-
-void SystemTrayNotifier::NotifyBluetoothDiscoveringChanged() {
- for (auto& observer : bluetooth_observers_)
- observer.OnBluetoothDiscoveringChanged();
-}
-
-void SystemTrayNotifier::AddClockObserver(ClockObserver* observer) {
- clock_observers_.AddObserver(observer);
-}
-
-void SystemTrayNotifier::RemoveClockObserver(ClockObserver* observer) {
- clock_observers_.RemoveObserver(observer);
-}
-
-void SystemTrayNotifier::NotifyRefreshClock() {
- for (auto& observer : clock_observers_)
- observer.Refresh();
-}
-
-void SystemTrayNotifier::NotifyDateFormatChanged() {
- for (auto& observer : clock_observers_)
- observer.OnDateFormatChanged();
-}
-
-void SystemTrayNotifier::NotifySystemClockTimeUpdated() {
- for (auto& observer : clock_observers_)
- observer.OnSystemClockTimeUpdated();
-}
-
-void SystemTrayNotifier::NotifySystemClockCanSetTimeChanged(bool can_set_time) {
- for (auto& observer : clock_observers_)
- observer.OnSystemClockCanSetTimeChanged(can_set_time);
-}
-
-void SystemTrayNotifier::AddEnterpriseDomainObserver(
- EnterpriseDomainObserver* observer) {
- enterprise_domain_observers_.AddObserver(observer);
-}
-
-void SystemTrayNotifier::RemoveEnterpriseDomainObserver(
- EnterpriseDomainObserver* observer) {
- enterprise_domain_observers_.RemoveObserver(observer);
-}
-
-void SystemTrayNotifier::NotifyEnterpriseDomainChanged() {
- for (auto& observer : enterprise_domain_observers_)
- observer.OnEnterpriseDomainChanged();
-}
-
-void SystemTrayNotifier::AddIMEObserver(IMEObserver* observer) {
- ime_observers_.AddObserver(observer);
-}
-
-void SystemTrayNotifier::RemoveIMEObserver(IMEObserver* observer) {
- ime_observers_.RemoveObserver(observer);
-}
-
-void SystemTrayNotifier::NotifyRefreshIME() {
- for (auto& observer : ime_observers_)
- observer.OnIMERefresh();
-}
-
-void SystemTrayNotifier::NotifyRefreshIMEMenu(bool is_active) {
- for (auto& observer : ime_observers_)
- observer.OnIMEMenuActivationChanged(is_active);
-}
-
-void SystemTrayNotifier::AddLastWindowClosedObserver(
- LastWindowClosedObserver* observer) {
- last_window_closed_observers_.AddObserver(observer);
-}
-
-void SystemTrayNotifier::RemoveLastWindowClosedObserver(
- LastWindowClosedObserver* observer) {
- last_window_closed_observers_.RemoveObserver(observer);
-}
-
-void SystemTrayNotifier::NotifyLastWindowClosed() {
- for (auto& observer : last_window_closed_observers_)
- observer.OnLastWindowClosed();
-}
-
-void SystemTrayNotifier::AddLogoutButtonObserver(
- LogoutButtonObserver* observer) {
- logout_button_observers_.AddObserver(observer);
-}
-
-void SystemTrayNotifier::RemoveLogoutButtonObserver(
- LogoutButtonObserver* observer) {
- logout_button_observers_.RemoveObserver(observer);
-}
-
-void SystemTrayNotifier::NotifyShowLoginButtonChanged(bool show_login_button) {
- for (auto& observer : logout_button_observers_)
- observer.OnShowLogoutButtonInTrayChanged(show_login_button);
-}
-
-void SystemTrayNotifier::NotifyLogoutDialogDurationChanged(
- base::TimeDelta duration) {
- for (auto& observer : logout_button_observers_)
- observer.OnLogoutDialogDurationChanged(duration);
-}
-
-void SystemTrayNotifier::AddNetworkObserver(NetworkObserver* observer) {
- network_observers_.AddObserver(observer);
-}
-
-void SystemTrayNotifier::RemoveNetworkObserver(NetworkObserver* observer) {
- network_observers_.RemoveObserver(observer);
-}
-
-void SystemTrayNotifier::NotifyRequestToggleWifi() {
- for (auto& observer : network_observers_)
- observer.RequestToggleWifi();
-}
-
-void SystemTrayNotifier::AddNetworkPortalDetectorObserver(
- NetworkPortalDetectorObserver* observer) {
- network_portal_detector_observers_.AddObserver(observer);
-}
-
-void SystemTrayNotifier::RemoveNetworkPortalDetectorObserver(
- NetworkPortalDetectorObserver* observer) {
- network_portal_detector_observers_.RemoveObserver(observer);
-}
-
-void SystemTrayNotifier::NotifyOnCaptivePortalDetected(
- const std::string& guid) {
- for (auto& observer : network_portal_detector_observers_)
- observer.OnCaptivePortalDetected(guid);
-}
-
-void SystemTrayNotifier::AddScreenCaptureObserver(
- ScreenCaptureObserver* observer) {
- screen_capture_observers_.AddObserver(observer);
-}
-
-void SystemTrayNotifier::RemoveScreenCaptureObserver(
- ScreenCaptureObserver* observer) {
- screen_capture_observers_.RemoveObserver(observer);
-}
-
-void SystemTrayNotifier::NotifyScreenCaptureStart(
- const base::Closure& stop_callback,
- const base::string16& sharing_app_name) {
- for (auto& observer : screen_capture_observers_)
- observer.OnScreenCaptureStart(stop_callback, sharing_app_name);
-}
-
-void SystemTrayNotifier::NotifyScreenCaptureStop() {
- for (auto& observer : screen_capture_observers_)
- observer.OnScreenCaptureStop();
-}
-
-void SystemTrayNotifier::AddScreenShareObserver(ScreenShareObserver* observer) {
- screen_share_observers_.AddObserver(observer);
-}
-
-void SystemTrayNotifier::RemoveScreenShareObserver(
- ScreenShareObserver* observer) {
- screen_share_observers_.RemoveObserver(observer);
-}
-
-void SystemTrayNotifier::NotifyScreenShareStart(
- const base::Closure& stop_callback,
- const base::string16& helper_name) {
- for (auto& observer : screen_share_observers_)
- observer.OnScreenShareStart(stop_callback, helper_name);
-}
-
-void SystemTrayNotifier::NotifyScreenShareStop() {
- for (auto& observer : screen_share_observers_)
- observer.OnScreenShareStop();
-}
-
-void SystemTrayNotifier::AddSessionLengthLimitObserver(
- SessionLengthLimitObserver* observer) {
- session_length_limit_observers_.AddObserver(observer);
-}
-
-void SystemTrayNotifier::RemoveSessionLengthLimitObserver(
- SessionLengthLimitObserver* observer) {
- session_length_limit_observers_.RemoveObserver(observer);
-}
-
-void SystemTrayNotifier::NotifySessionStartTimeChanged() {
- for (auto& observer : session_length_limit_observers_)
- observer.OnSessionStartTimeChanged();
-}
-
-void SystemTrayNotifier::NotifySessionLengthLimitChanged() {
- for (auto& observer : session_length_limit_observers_)
- observer.OnSessionLengthLimitChanged();
-}
-
-void SystemTrayNotifier::AddTracingObserver(TracingObserver* observer) {
- tracing_observers_.AddObserver(observer);
-}
-
-void SystemTrayNotifier::RemoveTracingObserver(TracingObserver* observer) {
- tracing_observers_.RemoveObserver(observer);
-}
-
-void SystemTrayNotifier::NotifyTracingModeChanged(bool value) {
- for (auto& observer : tracing_observers_)
- observer.OnTracingModeChanged(value);
-}
-
-void SystemTrayNotifier::AddUserObserver(UserObserver* observer) {
- user_observers_.AddObserver(observer);
-}
-
-void SystemTrayNotifier::RemoveUserObserver(UserObserver* observer) {
- user_observers_.RemoveObserver(observer);
-}
-
-void SystemTrayNotifier::NotifyUserUpdate() {
- for (auto& observer : user_observers_)
- observer.OnUserUpdate();
-}
-
-void SystemTrayNotifier::NotifyUserAddedToSession() {
- for (auto& observer : user_observers_)
- observer.OnUserAddedToSession();
-}
-
-void SystemTrayNotifier::AddVirtualKeyboardObserver(
- VirtualKeyboardObserver* observer) {
- virtual_keyboard_observers_.AddObserver(observer);
-}
-
-void SystemTrayNotifier::RemoveVirtualKeyboardObserver(
- VirtualKeyboardObserver* observer) {
- virtual_keyboard_observers_.RemoveObserver(observer);
-}
-
-void SystemTrayNotifier::NotifyVirtualKeyboardSuppressionChanged(
- bool suppressed) {
- for (auto& observer : virtual_keyboard_observers_)
- observer.OnKeyboardSuppressionChanged(suppressed);
-}
-
-} // namespace ash
« no previous file with comments | « ash/common/system/tray/system_tray_notifier.h ('k') | ash/common/system/tray/system_tray_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698