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

Unified Diff: ash/system/user/update_observer.h

Issue 614363002: Added Aura notification that relaunch and powerwash is required in case of downgrade. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More fixes to StstemTrayDelegateWin. Created 6 years, 3 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/system/user/update_observer.h
diff --git a/ash/system/user/update_observer.h b/ash/system/user/update_observer.h
index e509f62d3cb31461a1ba671d7478cbf4a79f9f5e..dacf1984dd20d568563bba8d9252d60aaa5c8745 100644
--- a/ash/system/user/update_observer.h
+++ b/ash/system/user/update_observer.h
@@ -9,18 +9,13 @@
namespace ash {
+struct UpdateInfo;
+
class ASH_EXPORT UpdateObserver {
public:
- enum UpdateSeverity {
- UPDATE_NORMAL,
- UPDATE_LOW_GREEN,
- UPDATE_HIGH_ORANGE,
- UPDATE_SEVERE_RED,
- };
-
virtual ~UpdateObserver() {}
- virtual void OnUpdateRecommended(UpdateSeverity severity) = 0;
+ virtual void OnUpdateRecommended(const UpdateInfo& info) = 0;
};
} // namespace ash

Powered by Google App Engine
This is Rietveld 408576698