OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "ash/desktop_background/desktop_background_controller.h" | 5 #include "ash/desktop_background/desktop_background_controller.h" |
6 | 6 |
7 #include <cmath> | 7 #include <cmath> |
8 #include <cstdlib> | 8 #include <cstdlib> |
9 | 9 |
10 #include "ash/ash_switches.h" | 10 #include "ash/ash_switches.h" |
11 #include "ash/desktop_background/desktop_background_controller_observer.h" | 11 #include "ash/desktop_background/desktop_background_controller_observer.h" |
12 #include "ash/desktop_background/desktop_background_widget_controller.h" | 12 #include "ash/desktop_background/desktop_background_widget_controller.h" |
13 #include "ash/root_window_controller.h" | 13 #include "ash/root_window_controller.h" |
14 #include "ash/shell.h" | 14 #include "ash/shell.h" |
15 #include "ash/shell_window_ids.h" | 15 #include "ash/shell_window_ids.h" |
16 #include "ash/test/ash_test_base.h" | 16 #include "ash/test/ash_test_base.h" |
17 #include "ash/test/display_manager_test_api.h" | 17 #include "ash/test/display_manager_test_api.h" |
18 #include "ash/test/test_user_wallpaper_delegate.h" | 18 #include "ash/test/test_user_wallpaper_delegate.h" |
19 #include "base/command_line.h" | 19 #include "base/command_line.h" |
20 #include "base/file_util.h" | 20 #include "base/file_util.h" |
21 #include "base/files/file_path.h" | 21 #include "base/files/file_path.h" |
22 #include "base/files/scoped_temp_dir.h" | 22 #include "base/files/scoped_temp_dir.h" |
23 #include "base/message_loop/message_loop.h" | 23 #include "base/message_loop/message_loop.h" |
24 #include "base/threading/sequenced_worker_pool.h" | 24 #include "base/threading/sequenced_worker_pool.h" |
25 #include "content/public/browser/browser_thread.h" | 25 #include "content/public/browser/browser_thread.h" |
26 #include "content/public/test/test_browser_thread.h" | 26 #include "content/public/test/test_browser_thread.h" |
27 #include "content/public/test/test_utils.h" | 27 #include "content/public/test/test_utils.h" |
28 #include "third_party/skia/include/core/SkBitmap.h" | 28 #include "third_party/skia/include/core/SkBitmap.h" |
29 #include "third_party/skia/include/core/SkColor.h" | 29 #include "third_party/skia/include/core/SkColor.h" |
30 #include "ui/aura/root_window.h" | 30 #include "ui/aura/window_event_dispatcher.h" |
31 #include "ui/compositor/scoped_animation_duration_scale_mode.h" | 31 #include "ui/compositor/scoped_animation_duration_scale_mode.h" |
32 #include "ui/compositor/test/layer_animator_test_controller.h" | 32 #include "ui/compositor/test/layer_animator_test_controller.h" |
33 #include "ui/gfx/codec/jpeg_codec.h" | 33 #include "ui/gfx/codec/jpeg_codec.h" |
34 #include "ui/gfx/point.h" | 34 #include "ui/gfx/point.h" |
35 #include "ui/gfx/rect.h" | 35 #include "ui/gfx/rect.h" |
36 | 36 |
37 using aura::RootWindow; | 37 using aura::RootWindow; |
38 using aura::Window; | 38 using aura::Window; |
39 | 39 |
40 namespace ash { | 40 namespace ash { |
(...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
687 // new load task was started (since the previous one was interrupted by | 687 // new load task was started (since the previous one was interrupted by |
688 // SetCustomWallpaper()). See http://crbug.com/327443. | 688 // SetCustomWallpaper()). See http://crbug.com/327443. |
689 TestObserver observer(controller_); | 689 TestObserver observer(controller_); |
690 ASSERT_TRUE(controller_->SetDefaultWallpaper(false)); | 690 ASSERT_TRUE(controller_->SetDefaultWallpaper(false)); |
691 observer.WaitForWallpaperDataChanged(); | 691 observer.WaitForWallpaperDataChanged(); |
692 EXPECT_TRUE(ImageIsNearColor(controller_->GetWallpaper(), | 692 EXPECT_TRUE(ImageIsNearColor(controller_->GetWallpaper(), |
693 kSmallWallpaperColor)); | 693 kSmallWallpaperColor)); |
694 } | 694 } |
695 | 695 |
696 } // namespace ash | 696 } // namespace ash |
OLD | NEW |