| Index: ui/app_list/views/all_apps_tile_item_view.h
 | 
| diff --git a/ui/app_list/views/all_apps_tile_item_view.h b/ui/app_list/views/all_apps_tile_item_view.h
 | 
| index a3cf94b987fa92496763b91eccaf6935e0bdd60b..aa5235148d7a4ef9e248a002b0ad41a9a9329f28 100644
 | 
| --- a/ui/app_list/views/all_apps_tile_item_view.h
 | 
| +++ b/ui/app_list/views/all_apps_tile_item_view.h
 | 
| @@ -11,12 +11,13 @@
 | 
|  
 | 
|  namespace app_list {
 | 
|  
 | 
| +class AppListView;
 | 
|  class ContentsView;
 | 
|  
 | 
|  // A tile item for the "All apps" button on the start page.
 | 
|  class AllAppsTileItemView : public TileItemView {
 | 
|   public:
 | 
| -  explicit AllAppsTileItemView(ContentsView* contents_view);
 | 
| +  AllAppsTileItemView(ContentsView* contents_view, AppListView* app_list_view);
 | 
|  
 | 
|    ~AllAppsTileItemView() override;
 | 
|  
 | 
| @@ -27,6 +28,7 @@ class AllAppsTileItemView : public TileItemView {
 | 
|  
 | 
|   private:
 | 
|    ContentsView* contents_view_;
 | 
| +  AppListView* const app_list_view_;  // Owned by the views hierarchy.
 | 
|  
 | 
|    DISALLOW_COPY_AND_ASSIGN(AllAppsTileItemView);
 | 
|  };
 | 
| 
 |