summaryrefslogtreecommitdiffstats
path: root/chromium/ash/system/user/update_observer.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ash/system/user/update_observer.h')
-rw-r--r--chromium/ash/system/user/update_observer.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/chromium/ash/system/user/update_observer.h b/chromium/ash/system/user/update_observer.h
deleted file mode 100644
index e509f62d3cb..00000000000
--- a/chromium/ash/system/user/update_observer.h
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef ASH_SYSTEM_USER_UPDATE_OBSERVER_H_
-#define ASH_SYSTEM_USER_UPDATE_OBSERVER_H_
-
-#include "ash/ash_export.h"
-
-namespace ash {
-
-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;
-};
-
-} // namespace ash
-
-#endif //ASH_SYSTEM_USER_UPDATE_OBSERVER_H_