Index: ash/test/app_list_controller_test_api.h |
diff --git a/ash/test/app_list_controller_test_api.h b/ash/test/app_list_controller_test_api.h |
index 733264bacb5c3de574a02663d24d35a09404fedd..6d59bca08272db15a0dddf2dc70630b534f4c702 100644 |
--- a/ash/test/app_list_controller_test_api.h |
+++ b/ash/test/app_list_controller_test_api.h |
@@ -10,6 +10,7 @@ |
namespace app_list { |
class AppListView; |
class AppsGridView; |
+class StartPageView; |
} |
namespace ash { |
@@ -24,9 +25,15 @@ class AppListControllerTestApi { |
explicit AppListControllerTestApi(Shell* shell); |
// Gets the root level apps grid view. |
- app_list::AppsGridView* GetRootGridView(); |
+ app_list::AppsGridView* GetRootGridView() const; |
- app_list::AppListView* view(); |
+ // Gets the start page view. |
+ app_list::StartPageView* GetStartPageView() const; |
+ |
+ app_list::AppListView* view() const; |
+ |
+ // Calls Layout() on the ContentsView. |
+ void LayoutContentsView(); |
private: |
AppListController* app_list_controller_; // Not owned. |