| Index: ash/shelf/app_list_button.h
|
| diff --git a/ash/shelf/app_list_button.h b/ash/shelf/app_list_button.h
|
| index b9ad7f169f3120f576e7240a8711b27458ff0adf..31faff2948e1199d3fbbb9ec325f5dce44bf1ff9 100644
|
| --- a/ash/shelf/app_list_button.h
|
| +++ b/ash/shelf/app_list_button.h
|
| @@ -14,15 +14,15 @@
|
|
|
| namespace ash {
|
| class InkDropButtonListener;
|
| +class Shelf;
|
| class ShelfView;
|
| -class WmShelf;
|
|
|
| // Button used for the AppList icon on the shelf.
|
| class ASH_EXPORT AppListButton : public views::ImageButton {
|
| public:
|
| AppListButton(InkDropButtonListener* listener,
|
| ShelfView* shelf_view,
|
| - WmShelf* wm_shelf);
|
| + Shelf* shelf);
|
| ~AppListButton() override;
|
|
|
| void OnAppListShown();
|
| @@ -64,7 +64,7 @@ class ASH_EXPORT AppListButton : public views::ImageButton {
|
|
|
| InkDropButtonListener* listener_;
|
| ShelfView* shelf_view_;
|
| - WmShelf* wm_shelf_;
|
| + Shelf* shelf_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(AppListButton);
|
| };
|
|
|