Index: chrome/browser/ui/app_list/app_list_controller_browsertest.cc |
diff --git a/chrome/browser/ui/app_list/app_list_controller_browsertest.cc b/chrome/browser/ui/app_list/app_list_controller_browsertest.cc |
index 84870f8be018067c4bcf9b296ac69042ef6902d6..ad4a565f7bf6ac8ebef14541757d691f66082274 100644 |
--- a/chrome/browser/ui/app_list/app_list_controller_browsertest.cc |
+++ b/chrome/browser/ui/app_list/app_list_controller_browsertest.cc |
@@ -8,14 +8,13 @@ |
#include "base/prefs/pref_service.h" |
#include "chrome/browser/browser_process.h" |
#include "chrome/browser/profiles/profile_manager.h" |
-#include "chrome/browser/ui/app_list/app_list_util.h" |
+#include "chrome/browser/ui/app_list/app_list_service.h" |
#include "chrome/browser/ui/browser.h" |
#include "chrome/common/chrome_switches.h" |
#include "chrome/common/pref_names.h" |
#include "chrome/test/base/in_process_browser_test.h" |
#include "chrome/test/base/ui_test_utils.h" |
- |
// Browser Test for AppListController that runs on all platforms supporting |
// app_list. |
class AppListControllerBrowserTest : public InProcessBrowserTest { |
@@ -41,11 +40,12 @@ class AppListControllerBrowserTest : public InProcessBrowserTest { |
#if !defined(OS_CHROMEOS) && !defined(USE_AURA) |
// Show the app list, then dismiss it. |
IN_PROC_BROWSER_TEST_F(AppListControllerBrowserTest, ShowAndDismiss) { |
- ASSERT_FALSE(chrome::IsAppListVisible()); |
- chrome::ShowAppList(browser()->profile()); |
- ASSERT_TRUE(chrome::IsAppListVisible()); |
- chrome::DismissAppList(); |
- ASSERT_FALSE(chrome::IsAppListVisible()); |
+ AppListService* service = AppListService::Get(); |
+ ASSERT_FALSE(service->IsAppListVisible()); |
+ service->ShowAppList(browser()->profile()); |
+ ASSERT_TRUE(service->IsAppListVisible()); |
+ service->DismissAppList(); |
+ ASSERT_FALSE(service->IsAppListVisible()); |
} |
// TODO(tapted): Enable this when profile switching code has been moved up the |
@@ -61,15 +61,16 @@ IN_PROC_BROWSER_TEST_F(AppListControllerBrowserTest, SwitchAppListProfiles) { |
string16(), string16(), false); |
content::RunMessageLoop(); // Will stop in OnProfileCreated(). |
- ASSERT_FALSE(chrome::IsAppListVisible()); |
- chrome::ShowAppList(browser()->profile()); |
- ASSERT_TRUE(chrome::IsAppListVisible()); |
- ASSERT_EQ(browser()->profile(), chrome::GetCurrentAppListProfile()); |
- chrome::ShowAppList(profile2_); |
- ASSERT_TRUE(chrome::IsAppListVisible()); |
- ASSERT_EQ(profile2_, chrome::GetCurrentAppListProfile()); |
- chrome::DismissAppList(); |
- ASSERT_FALSE(chrome::IsAppListVisible()); |
+ AppListService* service = AppListService::Get(); |
+ ASSERT_FALSE(service->IsAppListVisible()); |
+ service->ShowAppList(browser()->profile()); |
+ ASSERT_TRUE(service->IsAppListVisible()); |
+ ASSERT_EQ(browser()->profile(), service->GetCurrentAppListProfile()); |
+ service->ShowAppList(profile2_); |
+ ASSERT_TRUE(service->IsAppListVisible()); |
+ ASSERT_EQ(profile2_, service->GetCurrentAppListProfile()); |
+ service->DismissAppList(); |
+ ASSERT_FALSE(service->IsAppListVisible()); |
} |
class ShowAppListBrowserTest : public InProcessBrowserTest { |
@@ -85,15 +86,16 @@ class ShowAppListBrowserTest : public InProcessBrowserTest { |
}; |
IN_PROC_BROWSER_TEST_F(ShowAppListBrowserTest, ShowAppListFlag) { |
+ AppListService* service = AppListService::Get(); |
// The app list should already be shown because we passed |
// switches::kShowAppList. |
- ASSERT_TRUE(chrome::IsAppListVisible()); |
+ ASSERT_TRUE(service->IsAppListVisible()); |
// Create a browser to prevent shutdown when we dismiss the app list. We |
// need to do this because switches::kShowAppList suppresses the creation of |
// any browsers. |
- CreateBrowser(chrome::GetCurrentAppListProfile()); |
- chrome::DismissAppList(); |
+ CreateBrowser(service->GetCurrentAppListProfile()); |
+ service->DismissAppList(); |
} |
#endif // !defined(OS_MACOSX) |
#endif // !defined(OS_CHROMEOS) && !defined(USE_AURA) |