Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 module ash.mojom; | 5 module ash.mojom; |
| 6 | 6 |
| 7 // Urgency of a pending software update. Sets the system tray update icon color. | 7 // Urgency of a pending software update. Sets the system tray update icon color. |
| 8 // TODO(jamescook): UpgradeDetector::UpgradeNotificationAnnoyanceLevel could be | 8 // TODO(jamescook): UpgradeDetector::UpgradeNotificationAnnoyanceLevel could be |
| 9 // replaced with this if this moves into a component shared with non-ash chrome. | 9 // replaced with this if this moves into a component shared with non-ash chrome. |
| 10 enum UpdateSeverity { | 10 enum UpdateSeverity { |
| 11 NONE, | 11 NONE, |
| 12 LOW, | 12 LOW, |
| 13 ELEVATED, | 13 ELEVATED, |
| 14 HIGH, | 14 HIGH, |
| 15 SEVERE, | 15 SEVERE, |
| 16 CRITICAL, | 16 CRITICAL, |
| 17 }; | 17 }; |
| 18 | |
| 19 // The type of update being applied. Sets the string in the system tray. | |
| 20 enum UpdateType { | |
| 21 NONE, | |
|
James Cook
2017/04/18 00:57:28
Is NONE used? If not, I would just provide SYSTEM
Greg K
2017/04/18 22:46:50
Done.
| |
| 22 SYSTEM, | |
| 23 FLASH | |
| 24 }; | |
| OLD | NEW |