Index: ash/test/app_list_controller_test_api.cc |
diff --git a/ash/test/app_list_controller_test_api.cc b/ash/test/app_list_controller_test_api.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..df21070f138d1073469848118f9eb5642853669c |
--- /dev/null |
+++ b/ash/test/app_list_controller_test_api.cc |
@@ -0,0 +1,21 @@ |
+// Copyright 2013 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "ash/test/app_list_controller_test_api.h" |
+ |
+#include "ash/test/shell_test_api.h" |
+#include "ash/wm/app_list_controller.h" |
+ |
+namespace ash { |
+namespace test { |
+ |
+AppListControllerTestApi::AppListControllerTestApi(Shell* shell) |
+ : app_list_controller_(ShellTestApi(shell).app_list_controller()) {} |
+ |
+app_list::AppListView* AppListControllerTestApi::view() { |
+ return app_list_controller_->view_; |
+} |
+ |
+} // namespace test |
+} // namespace ash |