| 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";
|
|
|