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

Unified Diff: ash/common/system/update/tray_update.h

Issue 2734653002: chromeos: Move files in //ash/common to //ash (Closed)
Patch Set: fix a11y tests, fix docs Created 3 years, 10 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
« no previous file with comments | « ash/common/system/tray_accessibility.cc ('k') | ash/common/system/update/tray_update.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/system/update/tray_update.h
diff --git a/ash/common/system/update/tray_update.h b/ash/common/system/update/tray_update.h
deleted file mode 100644
index 3850804bc888a2ba3efca6e12f41ecdae7475540..0000000000000000000000000000000000000000
--- a/ash/common/system/update/tray_update.h
+++ /dev/null
@@ -1,55 +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_COMMON_SYSTEM_UPDATE_TRAY_UPDATE_H_
-#define ASH_COMMON_SYSTEM_UPDATE_TRAY_UPDATE_H_
-
-#include "ash/ash_export.h"
-#include "ash/common/system/tray/tray_image_item.h"
-#include "base/macros.h"
-
-namespace views {
-class View;
-}
-
-namespace ash {
-
-namespace mojom {
-enum class UpdateSeverity;
-}
-
-// The system update tray item. The tray icon stays visible once an update
-// notification is received. The icon only disappears after a reboot to apply
-// the update. Exported for test.
-class ASH_EXPORT TrayUpdate : public TrayImageItem {
- public:
- explicit TrayUpdate(SystemTray* system_tray);
- ~TrayUpdate() override;
-
- // Shows an icon in the system tray indicating that a software update is
- // available. Once shown the icon persists until reboot. |severity| and
- // |factory_reset_required| are used to set the icon, color, and tooltip.
- void ShowUpdateIcon(mojom::UpdateSeverity severity,
- bool factory_reset_required);
-
- private:
- class UpdateView;
-
- // Overridden from TrayImageItem.
- bool GetInitialVisibility() override;
- views::View* CreateDefaultView(LoginStatus status) override;
-
- // If an external monitor is connected then the system tray may be created
- // after the update data is sent from chrome, so share the update info between
- // all instances.
- static bool update_required_;
- static mojom::UpdateSeverity severity_;
- static bool factory_reset_required_;
-
- DISALLOW_COPY_AND_ASSIGN(TrayUpdate);
-};
-
-} // namespace ash
-
-#endif // ASH_COMMON_SYSTEM_UPDATE_TRAY_UPDATE_H_
« no previous file with comments | « ash/common/system/tray_accessibility.cc ('k') | ash/common/system/update/tray_update.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698