| Index: ash/common/system/status_area_widget.h
|
| diff --git a/ash/common/system/status_area_widget.h b/ash/common/system/status_area_widget.h
|
| index 550555f7370f7d582aeb9ba477fa5ea9079a5dcc..0bb9976c5ce8ff22b7a0bd6fba96cc8dd68b81b7 100644
|
| --- a/ash/common/system/status_area_widget.h
|
| +++ b/ash/common/system/status_area_widget.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include "ash/ash_export.h"
|
| #include "ash/common/login_status.h"
|
| +#include "ash/common/shelf/shelf_background_animator_observer.h"
|
| #include "ash/common/shelf/shelf_types.h"
|
| #include "base/macros.h"
|
| #include "ui/views/widget/widget.h"
|
| @@ -26,7 +27,8 @@ class PaletteTray;
|
| class VirtualKeyboardTray;
|
| #endif
|
|
|
| -class ASH_EXPORT StatusAreaWidget : public views::Widget {
|
| +class ASH_EXPORT StatusAreaWidget : public views::Widget,
|
| + public ShelfBackgroundAnimatorObserver {
|
| public:
|
| StatusAreaWidget(WmWindow* status_container, WmShelf* wm_shelf);
|
| ~StatusAreaWidget() override;
|
| @@ -75,6 +77,9 @@ class ASH_EXPORT StatusAreaWidget : public views::Widget {
|
| void OnMouseEvent(ui::MouseEvent* event) override;
|
| void OnGestureEvent(ui::GestureEvent* event) override;
|
|
|
| + // ShelfBackgroundAnimatorObserver:
|
| + void UpdateShelfItemBackground(int alpha) override;
|
| +
|
| private:
|
| void AddSystemTray();
|
| void AddWebNotificationTray();
|
|
|