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

Unified Diff: ash/common/system/system_notifier.cc

Issue 2090913002: Add strings and notifier ID for low disk. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add strings and notifier ID for low disk. Created 4 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 side-by-side diff with in-line comments
Download patch
Index: ash/common/system/system_notifier.cc
diff --git a/ash/common/system/system_notifier.cc b/ash/common/system/system_notifier.cc
index 1d35d4fb6811790f5b09f448b3a227ec37f80aee..8dfbff523cc67b3a714f30a697fae491bc6a42b7 100644
--- a/ash/common/system/system_notifier.cc
+++ b/ash/common/system/system_notifier.cc
@@ -39,6 +39,9 @@ const char* kAlwaysShownSystemNotifierIds[] = {
const char* kAshSystemNotifiers[] = {
kNotifierBluetooth,
kNotifierDisplayResolutionChange,
+#if defined(OS_CHROMEOS)
+ kNotifierDisk,
+#endif
kNotifierLocale,
kNotifierMultiProfileFirstRun,
#if defined(OS_CHROMEOS)
@@ -73,6 +76,7 @@ bool MatchSystemNotifierId(const message_center::NotifierId& notifier_id,
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";

Powered by Google App Engine
This is Rietveld 408576698