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

Unified Diff: ash/common/system/system_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/system_notifier.h ('k') | ash/common/system/tiles/tiles_default_view.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/system/system_notifier.cc
diff --git a/ash/common/system/system_notifier.cc b/ash/common/system/system_notifier.cc
deleted file mode 100644
index d36e4e187a9a2e32fc558f042d365c08c9bf54e7..0000000000000000000000000000000000000000
--- a/ash/common/system/system_notifier.cc
+++ /dev/null
@@ -1,89 +0,0 @@
-// Copyright 2013 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/system_notifier.h"
-
-#include "base/logging.h"
-
-namespace ash {
-namespace system_notifier {
-
-namespace {
-
-// See http://dev.chromium.org/chromium-os/chromiumos-design-docs/
-// system-notifications for the reasoning.
-
-// |kAlwaysShownSystemNotifierIds| is the list of system notification sources
-// which can appear regardless of the situation, such like login screen or lock
-// screen.
-const char* kAlwaysShownSystemNotifierIds[] = {
- kNotifierAccessibility, kNotifierDeprecatedAccelerator, kNotifierBattery,
- kNotifierDisplay, kNotifierDisplayError, kNotifierNetworkError,
- kNotifierPower,
- // Note: Order doesn't matter here, so keep this in alphabetic order, don't
- // just add your stuff at the end!
- NULL};
-
-// |kAshSystemNotifiers| is the list of normal system notification sources for
-// ash events. These notifications can be hidden in some context.
-const char* kAshSystemNotifiers[] = {
- kNotifierBluetooth, kNotifierDisplayResolutionChange, kNotifierDisk,
- kNotifierLocale, kNotifierMultiProfileFirstRun, kNotifierNetwork,
- kNotifierNetworkPortalDetector, kNotifierScreenshot, kNotifierScreenCapture,
- kNotifierScreenShare, kNotifierSessionLengthTimeout,
- kNotifierSupervisedUser, kNotifierWebUsb, kNotifierSms,
- // Note: Order doesn't matter here, so keep this in alphabetic order, don't
- // just add your stuff at the end!
- NULL};
-
-bool MatchSystemNotifierId(const message_center::NotifierId& notifier_id,
- const char* id_list[]) {
- if (notifier_id.type != message_center::NotifierId::SYSTEM_COMPONENT)
- return false;
-
- for (size_t i = 0; id_list[i] != NULL; ++i) {
- if (notifier_id.id == id_list[i])
- return true;
- }
- return false;
-}
-
-} // namespace
-
-const char kNotifierAccessibility[] = "ash.accessibility";
-const char kNotifierBattery[] = "ash.battery";
-const char kNotifierBluetooth[] = "ash.bluetooth";
-const char kNotifierDeprecatedAccelerator[] = "ash.accelerator-controller";
-const char kNotifierDisk[] = "ash.disk";
-const char kNotifierDisplay[] = "ash.display";
-const char kNotifierDisplayError[] = "ash.display.error";
-const char kNotifierDisplayResolutionChange[] = "ash.display.resolution-change";
-const char kNotifierDualRole[] = "ash.dual-role";
-const char kNotifierHats[] = "ash.hats";
-const char kNotifierLocale[] = "ash.locale";
-const char kNotifierMultiProfileFirstRun[] = "ash.multi-profile.first-run";
-const char kNotifierNetwork[] = "ash.network";
-const char kNotifierNetworkError[] = "ash.network.error";
-const char kNotifierNetworkPortalDetector[] = "ash.network.portal-detector";
-const char kNotifierPower[] = "ash.power";
-const char kNotifierQuickUnlock[] = "ash.quickunlock";
-const char kNotifierScreenshot[] = "ash.screenshot";
-const char kNotifierScreenCapture[] = "ash.screen-capture";
-const char kNotifierScreenShare[] = "ash.screen-share";
-const char kNotifierSessionLengthTimeout[] = "ash.session-length-timeout";
-const char kNotifierSms[] = "ash.sms";
-const char kNotifierSupervisedUser[] = "ash.locally-managed-user";
-const char kNotifierWebUsb[] = "ash.webusb";
-
-bool ShouldAlwaysShowPopups(const message_center::NotifierId& notifier_id) {
- return MatchSystemNotifierId(notifier_id, kAlwaysShownSystemNotifierIds);
-}
-
-bool IsAshSystemNotifier(const message_center::NotifierId& notifier_id) {
- return ShouldAlwaysShowPopups(notifier_id) ||
- MatchSystemNotifierId(notifier_id, kAshSystemNotifiers);
-}
-
-} // namespace system_notifier
-} // namespace ash
« no previous file with comments | « ash/common/system/system_notifier.h ('k') | ash/common/system/tiles/tiles_default_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698