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

Unified Diff: ash/common/system/tray/tray_image_item.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/tray_event_filter.cc ('k') | ash/common/system/tray/tray_image_item.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/system/tray/tray_image_item.h
diff --git a/ash/common/system/tray/tray_image_item.h b/ash/common/system/tray/tray_image_item.h
deleted file mode 100644
index e9ac0b589de3de7b49fd30302df9fa9afc108046..0000000000000000000000000000000000000000
--- a/ash/common/system/tray/tray_image_item.h
+++ /dev/null
@@ -1,66 +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_TRAY_TRAY_IMAGE_ITEM_H_
-#define ASH_COMMON_SYSTEM_TRAY_TRAY_IMAGE_ITEM_H_
-
-#include "ash/ash_export.h"
-#include "ash/common/system/tray/system_tray_item.h"
-#include "base/macros.h"
-#include "third_party/skia/include/core/SkColor.h"
-
-namespace views {
-class ImageView;
-}
-
-namespace gfx {
-struct VectorIcon;
-}
-
-namespace ash {
-class TrayItemView;
-
-// A system tray item that uses an image as its "tray view" in the status area.
-class ASH_EXPORT TrayImageItem : public SystemTrayItem {
- public:
- TrayImageItem(SystemTray* system_tray,
- const gfx::VectorIcon& icon,
- UmaType uma_type);
- ~TrayImageItem() override;
-
- views::View* tray_view();
-
- protected:
- virtual bool GetInitialVisibility() = 0;
-
- // Overridden from SystemTrayItem.
- views::View* CreateTrayView(LoginStatus status) override;
- views::View* CreateDefaultView(LoginStatus status) override;
- views::View* CreateDetailedView(LoginStatus status) override;
- void DestroyTrayView() override;
- void DestroyDefaultView() override;
- void DestroyDetailedView() override;
- void UpdateAfterLoginStatusChange(LoginStatus status) override;
- void UpdateAfterShelfAlignmentChange(ShelfAlignment alignment) override;
-
- // Sets the color of the icon to |color|.
- void SetIconColor(SkColor color);
-
- private:
- // Sets the current icon on |tray_view_|'s ImageView.
- void UpdateImageOnImageView();
-
- // The icon and its current color.
- const gfx::VectorIcon& icon_;
- SkColor icon_color_;
-
- // The image view in the tray.
- TrayItemView* tray_view_;
-
- DISALLOW_COPY_AND_ASSIGN(TrayImageItem);
-};
-
-} // namespace ash
-
-#endif // ASH_COMMON_SYSTEM_TRAY_TRAY_IMAGE_ITEM_H_
« no previous file with comments | « ash/common/system/tray/tray_event_filter.cc ('k') | ash/common/system/tray/tray_image_item.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698