| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <stdint.h> | 5 #include <stdint.h> |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "ash/common/wallpaper/wallpaper_controller.h" | 11 #include "ash/common/wallpaper/wallpaper_controller.h" |
| 12 #include "ash/common/wallpaper/wallpaper_controller_observer.h" | 12 #include "ash/common/wallpaper/wallpaper_controller_observer.h" |
| 13 #include "ash/common/wm_shell.h" | 13 #include "ash/common/wm_shell.h" |
| 14 #include "base/command_line.h" | 14 #include "base/command_line.h" |
| 15 #include "base/compiler_specific.h" | 15 #include "base/compiler_specific.h" |
| 16 #include "base/files/file_path.h" | 16 #include "base/files/file_path.h" |
| 17 #include "base/files/file_util.h" | 17 #include "base/files/file_util.h" |
| 18 #include "base/json/json_writer.h" | 18 #include "base/json/json_writer.h" |
| 19 #include "base/macros.h" | 19 #include "base/macros.h" |
| 20 #include "base/memory/ptr_util.h" |
| 20 #include "base/numerics/safe_conversions.h" | 21 #include "base/numerics/safe_conversions.h" |
| 21 #include "base/path_service.h" | 22 #include "base/path_service.h" |
| 22 #include "base/run_loop.h" | 23 #include "base/run_loop.h" |
| 23 #include "chrome/browser/chromeos/login/login_manager_test.h" | 24 #include "chrome/browser/chromeos/login/login_manager_test.h" |
| 24 #include "chrome/browser/chromeos/login/startup_utils.h" | 25 #include "chrome/browser/chromeos/login/startup_utils.h" |
| 25 #include "chrome/browser/chromeos/login/ui/login_display_host.h" | 26 #include "chrome/browser/chromeos/login/ui/login_display_host.h" |
| 26 #include "chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.h" | 27 #include "chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.h" |
| 27 #include "chrome/browser/chromeos/policy/browser_policy_connector_chromeos.h" | 28 #include "chrome/browser/chromeos/policy/browser_policy_connector_chromeos.h" |
| 28 #include "chrome/browser/chromeos/policy/cloud_external_data_manager_base_test_u
til.h" | 29 #include "chrome/browser/chromeos/policy/cloud_external_data_manager_base_test_u
til.h" |
| 29 #include "chrome/browser/chromeos/policy/user_cloud_policy_manager_chromeos.h" | 30 #include "chrome/browser/chromeos/policy/user_cloud_policy_manager_chromeos.h" |
| (...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 423 | 424 |
| 424 IN_PROC_BROWSER_TEST_F(WallpaperManagerPolicyTest, PersistOverLogout) { | 425 IN_PROC_BROWSER_TEST_F(WallpaperManagerPolicyTest, PersistOverLogout) { |
| 425 LoginUser(testUsers_[0].GetUserEmail()); | 426 LoginUser(testUsers_[0].GetUserEmail()); |
| 426 | 427 |
| 427 // Wait until wallpaper has been loaded. | 428 // Wait until wallpaper has been loaded. |
| 428 RunUntilWallpaperChangeCount(1); | 429 RunUntilWallpaperChangeCount(1); |
| 429 ASSERT_EQ(kRedImageColor, GetAverageWallpaperColor()); | 430 ASSERT_EQ(kRedImageColor, GetAverageWallpaperColor()); |
| 430 } | 431 } |
| 431 | 432 |
| 432 } // namespace chromeos | 433 } // namespace chromeos |
| OLD | NEW |