| Index: ui/app_list/views/contents_view.h
|
| diff --git a/ui/app_list/views/contents_view.h b/ui/app_list/views/contents_view.h
|
| index 270f0eab2653ec45980f83e57f1733578e855681..670eae169a4a7f05d4461e6712c33f8527aa6d57 100644
|
| --- a/ui/app_list/views/contents_view.h
|
| +++ b/ui/app_list/views/contents_view.h
|
| @@ -45,7 +45,6 @@ class APP_LIST_EXPORT ContentsView : public views::View {
|
| };
|
|
|
| ContentsView(AppListMainView* app_list_main_view,
|
| - PaginationModel* pagination_model,
|
| AppListModel* model,
|
| AppListViewDelegate* view_delegate);
|
| virtual ~ContentsView();
|
| @@ -84,12 +83,14 @@ class APP_LIST_EXPORT ContentsView : public views::View {
|
| void CalculateIdealBounds();
|
| void AnimateToIdealBounds();
|
|
|
| + // Gets the PaginationModel owned by the AppsGridView.
|
| + PaginationModel* GetAppsPaginationModel();
|
| +
|
| // Overridden from ui::EventHandler:
|
| virtual void OnGestureEvent(ui::GestureEvent* event) OVERRIDE;
|
| virtual void OnScrollEvent(ui::ScrollEvent* event) OVERRIDE;
|
|
|
| ShowState show_state_;
|
| - PaginationModel* pagination_model_; // Owned by AppListController.
|
|
|
| AppsContainerView* apps_container_view_; // Owned by the views hierarchy.
|
| StartPageView* start_page_view_; // Owned by the views hierarchy.
|
|
|