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

Side by Side Diff: ash/public/interfaces/update.mojom

Issue 2816253002: Display "Restart to update Adobe Flash Player" for Flash updates. (Closed)
Patch Set: Fix nits from last review Created 3 years, 8 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
« no previous file with comments | « ash/public/interfaces/system_tray.mojom ('k') | ash/system/tray/system_tray_controller.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 FLASH,
22 SYSTEM,
23 };
OLDNEW
« no previous file with comments | « ash/public/interfaces/system_tray.mojom ('k') | ash/system/tray/system_tray_controller.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698