| Index: ash/first_run/first_run_helper_unittest.cc
|
| diff --git a/ash/first_run/first_run_helper_unittest.cc b/ash/first_run/first_run_helper_unittest.cc
|
| index 4bac72371db0bf99458292a1f74ab2846fdae963..6952dd6152ce522d7bf480e9ab54c341e6c2d219 100644
|
| --- a/ash/first_run/first_run_helper_unittest.cc
|
| +++ b/ash/first_run/first_run_helper_unittest.cc
|
| @@ -80,7 +80,7 @@ class FirstRunHelperTest : public AshTestBase,
|
| void CheckContainersAreVisible() const {
|
| aura::Window* root_window = Shell::GetInstance()->GetPrimaryRootWindow();
|
| std::vector<int> containers_to_check =
|
| - internal::DesktopCleaner::GetContainersToHideForTest();
|
| + DesktopCleaner::GetContainersToHideForTest();
|
| for (size_t i = 0; i < containers_to_check.size(); ++i) {
|
| aura::Window* container =
|
| Shell::GetContainer(root_window, containers_to_check[i]);
|
| @@ -91,7 +91,7 @@ class FirstRunHelperTest : public AshTestBase,
|
| void CheckContainersAreHidden() const {
|
| aura::Window* root_window = Shell::GetInstance()->GetPrimaryRootWindow();
|
| std::vector<int> containers_to_check =
|
| - internal::DesktopCleaner::GetContainersToHideForTest();
|
| + DesktopCleaner::GetContainersToHideForTest();
|
| for (size_t i = 0; i < containers_to_check.size(); ++i) {
|
| aura::Window* container =
|
| Shell::GetContainer(root_window, containers_to_check[i]);
|
|
|