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/test/test_shell_delegate.h" | 5 #include "ash/test/test_shell_delegate.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 | 8 |
9 #include "ash/screenshot_delegate.h" | 9 #include "ash/screenshot_delegate.h" |
10 #include "ash/shell.h" | 10 #include "ash/shell.h" |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 LauncherDelegate* TestShellDelegate::CreateLauncherDelegate( | 62 LauncherDelegate* TestShellDelegate::CreateLauncherDelegate( |
63 ash::LauncherModel* model) { | 63 ash::LauncherModel* model) { |
64 return NULL; | 64 return NULL; |
65 } | 65 } |
66 | 66 |
67 SystemTrayDelegate* TestShellDelegate::CreateSystemTrayDelegate( | 67 SystemTrayDelegate* TestShellDelegate::CreateSystemTrayDelegate( |
68 SystemTray* tray) { | 68 SystemTray* tray) { |
69 return NULL; | 69 return NULL; |
70 } | 70 } |
71 | 71 |
| 72 UserWallpaperDelegate* TestShellDelegate::CreateUserWallpaperDelegate() { |
| 73 return NULL; |
| 74 } |
| 75 |
72 } // namespace test | 76 } // namespace test |
73 } // namespace ash | 77 } // namespace ash |
OLD | NEW |