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 29 matching lines...) Expand all Loading... |
40 | 40 |
41 void TestShellDelegate::Shutdown() { | 41 void TestShellDelegate::Shutdown() { |
42 } | 42 } |
43 | 43 |
44 void TestShellDelegate::Exit() { | 44 void TestShellDelegate::Exit() { |
45 } | 45 } |
46 | 46 |
47 void TestShellDelegate::NewWindow(bool incognito) { | 47 void TestShellDelegate::NewWindow(bool incognito) { |
48 } | 48 } |
49 | 49 |
| 50 bool TestShellDelegate::IsBrowserWindow(const aura::Window* window) { |
| 51 return false; |
| 52 } |
| 53 |
50 void TestShellDelegate::Search() { | 54 void TestShellDelegate::Search() { |
51 } | 55 } |
52 | 56 |
53 void TestShellDelegate::OpenFileManager() { | 57 void TestShellDelegate::OpenFileManager() { |
54 } | 58 } |
55 | 59 |
56 void TestShellDelegate::OpenCrosh() { | 60 void TestShellDelegate::OpenCrosh() { |
57 } | 61 } |
58 | 62 |
59 void TestShellDelegate::OpenMobileSetup() { | 63 void TestShellDelegate::OpenMobileSetup() { |
(...skipping 18 matching lines...) Expand all Loading... |
78 SystemTray* tray) { | 82 SystemTray* tray) { |
79 return NULL; | 83 return NULL; |
80 } | 84 } |
81 | 85 |
82 UserWallpaperDelegate* TestShellDelegate::CreateUserWallpaperDelegate() { | 86 UserWallpaperDelegate* TestShellDelegate::CreateUserWallpaperDelegate() { |
83 return NULL; | 87 return NULL; |
84 } | 88 } |
85 | 89 |
86 } // namespace test | 90 } // namespace test |
87 } // namespace ash | 91 } // namespace ash |
OLD | NEW |