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

Side by Side Diff: ash/system/system_notifier.cc

Issue 1202923002: Revert "Deprecating high-conflict accelerators" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 6 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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/system_notifier.h" 5 #include "ash/system/system_notifier.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 8
9 #if defined(OS_CHROMEOS) 9 #if defined(OS_CHROMEOS)
10 #include "ui/chromeos/network/network_state_notifier.h" 10 #include "ui/chromeos/network/network_state_notifier.h"
11 #endif 11 #endif
12 12
13 namespace ash { 13 namespace ash {
14 namespace system_notifier { 14 namespace system_notifier {
15 15
16 namespace { 16 namespace {
17 17
18 // See http://dev.chromium.org/chromium-os/chromiumos-design-docs/ 18 // See http://dev.chromium.org/chromium-os/chromiumos-design-docs/
19 // system-notifications for the reasoning. 19 // system-notifications for the reasoning.
20 20
21 // |kAlwaysShownSystemNotifierIds| is the list of system notification sources 21 // |kAlwaysShownSystemNotifierIds| is the list of system notification sources
22 // which can appear regardless of the situation, such like login screen or lock 22 // which can appear regardless of the situation, such like login screen or lock
23 // screen. 23 // screen.
24 const char* kAlwaysShownSystemNotifierIds[] = { 24 const char* kAlwaysShownSystemNotifierIds[] = {
25 kNotifierDeprecatedAccelerator,
26 kNotifierBattery, 25 kNotifierBattery,
27 kNotifierDisplay, 26 kNotifierDisplay,
28 kNotifierDisplayError, 27 kNotifierDisplayError,
29 #if defined(OS_CHROMEOS) 28 #if defined(OS_CHROMEOS)
30 ui::NetworkStateNotifier::kNotifierNetworkError, 29 ui::NetworkStateNotifier::kNotifierNetworkError,
31 kNotifierOobeScreen, 30 kNotifierOobeScreen,
32 #endif 31 #endif
33 kNotifierPower, 32 kNotifierPower,
34 // Note: Order doesn't matter here, so keep this in alphabetic order, don't 33 // Note: Order doesn't matter here, so keep this in alphabetic order, don't
35 // just add your stuff at the end! 34 // just add your stuff at the end!
(...skipping 27 matching lines...) Expand all
63 62
64 for (size_t i = 0; id_list[i] != NULL; ++i) { 63 for (size_t i = 0; id_list[i] != NULL; ++i) {
65 if (notifier_id.id == id_list[i]) 64 if (notifier_id.id == id_list[i])
66 return true; 65 return true;
67 } 66 }
68 return false; 67 return false;
69 } 68 }
70 69
71 } // namespace 70 } // namespace
72 71
73 const char kNotifierDeprecatedAccelerator[] = "ash.accelerator-controller";
74 const char kNotifierBattery[] = "ash.battery"; 72 const char kNotifierBattery[] = "ash.battery";
75 const char kNotifierBluetooth[] = "ash.bluetooth"; 73 const char kNotifierBluetooth[] = "ash.bluetooth";
76 const char kNotifierDisplay[] = "ash.display"; 74 const char kNotifierDisplay[] = "ash.display";
77 const char kNotifierDisplayError[] = "ash.display.error"; 75 const char kNotifierDisplayError[] = "ash.display.error";
78 const char kNotifierDisplayResolutionChange[] = "ash.display.resolution-change"; 76 const char kNotifierDisplayResolutionChange[] = "ash.display.resolution-change";
79 const char kNotifierLocale[] = "ash.locale"; 77 const char kNotifierLocale[] = "ash.locale";
80 const char kNotifierMultiProfileFirstRun[] = "ash.multi-profile.first-run"; 78 const char kNotifierMultiProfileFirstRun[] = "ash.multi-profile.first-run";
81 const char kNotifierNetworkPortalDetector[] = "ash.network.portal-detector"; 79 const char kNotifierNetworkPortalDetector[] = "ash.network.portal-detector";
82 const char kNotifierOobeScreen[] = "ash.oobe-screen"; 80 const char kNotifierOobeScreen[] = "ash.oobe-screen";
83 const char kNotifierPower[] = "ash.power"; 81 const char kNotifierPower[] = "ash.power";
84 const char kNotifierScreenshot[] = "ash.screenshot"; 82 const char kNotifierScreenshot[] = "ash.screenshot";
85 const char kNotifierScreenCapture[] = "ash.screen-capture"; 83 const char kNotifierScreenCapture[] = "ash.screen-capture";
86 const char kNotifierScreenShare[] = "ash.screen-share"; 84 const char kNotifierScreenShare[] = "ash.screen-share";
87 const char kNotifierSessionLengthTimeout[] = "ash.session-length-timeout"; 85 const char kNotifierSessionLengthTimeout[] = "ash.session-length-timeout";
88 const char kNotifierSupervisedUser[] = "ash.locally-managed-user"; 86 const char kNotifierSupervisedUser[] = "ash.locally-managed-user";
89 87
90 bool ShouldAlwaysShowPopups(const message_center::NotifierId& notifier_id) { 88 bool ShouldAlwaysShowPopups(const message_center::NotifierId& notifier_id) {
91 return MatchSystemNotifierId(notifier_id, kAlwaysShownSystemNotifierIds); 89 return MatchSystemNotifierId(notifier_id, kAlwaysShownSystemNotifierIds);
92 } 90 }
93 91
94 bool IsAshSystemNotifier(const message_center::NotifierId& notifier_id) { 92 bool IsAshSystemNotifier(const message_center::NotifierId& notifier_id) {
95 return ShouldAlwaysShowPopups(notifier_id) || 93 return ShouldAlwaysShowPopups(notifier_id) ||
96 MatchSystemNotifierId(notifier_id, kAshSystemNotifiers); 94 MatchSystemNotifierId(notifier_id, kAshSystemNotifiers);
97 } 95 }
98 96
99 } // namespace system_notifier 97 } // namespace system_notifier
100 } // namespace ash 98 } // namespace ash
OLDNEW
« no previous file with comments | « ash/system/system_notifier.h ('k') | chrome/browser/resources/chromeos/keyboard_overlay_data.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698