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 <cstdlib> | 5 #include <cstdlib> |
6 #include <cstring> | 6 #include <cstring> |
7 | 7 |
8 #include "ash/desktop_background/desktop_background_controller.h" | 8 #include "ash/desktop_background/desktop_background_controller.h" |
9 #include "ash/desktop_background/desktop_background_controller_observer.h" | 9 #include "ash/desktop_background/desktop_background_controller_observer.h" |
10 #include "ash/shell.h" | 10 #include "ash/shell.h" |
(...skipping 10 matching lines...) Expand all Loading... |
21 #include "chrome/browser/chromeos/login/startup_utils.h" | 21 #include "chrome/browser/chromeos/login/startup_utils.h" |
22 #include "chrome/browser/chromeos/login/users/fake_user_manager.h" | 22 #include "chrome/browser/chromeos/login/users/fake_user_manager.h" |
23 #include "chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.h" | 23 #include "chrome/browser/chromeos/login/users/wallpaper/wallpaper_manager.h" |
24 #include "chrome/browser/chromeos/settings/cros_settings.h" | 24 #include "chrome/browser/chromeos/settings/cros_settings.h" |
25 #include "chrome/browser/chromeos/settings/device_settings_service.h" | 25 #include "chrome/browser/chromeos/settings/device_settings_service.h" |
26 #include "chrome/browser/prefs/browser_prefs.h" | 26 #include "chrome/browser/prefs/browser_prefs.h" |
27 #include "chrome/test/base/testing_browser_process.h" | 27 #include "chrome/test/base/testing_browser_process.h" |
28 #include "chromeos/chromeos_switches.h" | 28 #include "chromeos/chromeos_switches.h" |
29 #include "chromeos/settings/cros_settings_names.h" | 29 #include "chromeos/settings/cros_settings_names.h" |
30 #include "chromeos/settings/cros_settings_provider.h" | 30 #include "chromeos/settings/cros_settings_provider.h" |
31 #include "grit/ash_resources.h" | |
32 #include "testing/gtest/include/gtest/gtest.h" | 31 #include "testing/gtest/include/gtest/gtest.h" |
33 #include "ui/base/resource/resource_bundle.h" | |
34 #include "ui/gfx/image/image.h" | 32 #include "ui/gfx/image/image.h" |
35 | 33 |
36 using namespace ash; | 34 using namespace ash; |
37 | 35 |
38 namespace chromeos { | 36 namespace chromeos { |
39 | 37 |
40 class WallpaperManagerCacheTest : public test::AshTestBase { | 38 class WallpaperManagerCacheTest : public test::AshTestBase { |
41 public: | 39 public: |
42 WallpaperManagerCacheTest() | 40 WallpaperManagerCacheTest() |
43 : fake_user_manager_(new FakeUserManager()), | 41 : fake_user_manager_(new FakeUserManager()), |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 // Logged in users' wallpaper cache should be kept. | 94 // Logged in users' wallpaper cache should be kept. |
97 EXPECT_TRUE(cached_wallpaper.BackedBySameObjectAs(test_user_1_wallpaper)); | 95 EXPECT_TRUE(cached_wallpaper.BackedBySameObjectAs(test_user_1_wallpaper)); |
98 EXPECT_TRUE(test_api->GetWallpaperFromCache(test_user_2, &cached_wallpaper)); | 96 EXPECT_TRUE(test_api->GetWallpaperFromCache(test_user_2, &cached_wallpaper)); |
99 EXPECT_TRUE(cached_wallpaper.BackedBySameObjectAs(test_user_2_wallpaper)); | 97 EXPECT_TRUE(cached_wallpaper.BackedBySameObjectAs(test_user_2_wallpaper)); |
100 | 98 |
101 // Not logged in user's wallpaper cache should be cleared. | 99 // Not logged in user's wallpaper cache should be cleared. |
102 EXPECT_FALSE(test_api->GetWallpaperFromCache(test_user_3, &cached_wallpaper)); | 100 EXPECT_FALSE(test_api->GetWallpaperFromCache(test_user_3, &cached_wallpaper)); |
103 } | 101 } |
104 | 102 |
105 } // namespace chromeos | 103 } // namespace chromeos |
OLD | NEW |