| 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 27 matching lines...) Expand all Loading... |
| 38 bool TestShellDelegate::IsScreenLocked() const { | 38 bool TestShellDelegate::IsScreenLocked() const { |
| 39 return locked_; | 39 return locked_; |
| 40 } | 40 } |
| 41 | 41 |
| 42 void TestShellDelegate::Shutdown() { | 42 void TestShellDelegate::Shutdown() { |
| 43 } | 43 } |
| 44 | 44 |
| 45 void TestShellDelegate::Exit() { | 45 void TestShellDelegate::Exit() { |
| 46 } | 46 } |
| 47 | 47 |
| 48 void TestShellDelegate::NewTab() { |
| 49 } |
| 50 |
| 48 void TestShellDelegate::NewWindow(bool incognito) { | 51 void TestShellDelegate::NewWindow(bool incognito) { |
| 49 } | 52 } |
| 50 | 53 |
| 51 void TestShellDelegate::Search() { | 54 void TestShellDelegate::Search() { |
| 52 } | 55 } |
| 53 | 56 |
| 54 void TestShellDelegate::OpenFileManager() { | 57 void TestShellDelegate::OpenFileManager() { |
| 55 } | 58 } |
| 56 | 59 |
| 57 void TestShellDelegate::OpenCrosh() { | 60 void TestShellDelegate::OpenCrosh() { |
| 58 } | 61 } |
| 59 | 62 |
| 60 void TestShellDelegate::OpenMobileSetup() { | 63 void TestShellDelegate::OpenMobileSetup() { |
| 61 } | 64 } |
| 62 | 65 |
| 66 void TestShellDelegate::RestoreTab() { |
| 67 } |
| 68 |
| 63 void TestShellDelegate::ShowKeyboardOverlay() { | 69 void TestShellDelegate::ShowKeyboardOverlay() { |
| 64 } | 70 } |
| 65 | 71 |
| 72 void TestShellDelegate::ShowTaskManager() { |
| 73 } |
| 74 |
| 66 content::BrowserContext* TestShellDelegate::GetCurrentBrowserContext() { | 75 content::BrowserContext* TestShellDelegate::GetCurrentBrowserContext() { |
| 67 return new TestBrowserContext(); | 76 return new TestBrowserContext(); |
| 68 } | 77 } |
| 69 | 78 |
| 70 void TestShellDelegate::ToggleSpokenFeedback() { | 79 void TestShellDelegate::ToggleSpokenFeedback() { |
| 71 } | 80 } |
| 72 | 81 |
| 73 app_list::AppListViewDelegate* TestShellDelegate::CreateAppListViewDelegate() { | 82 app_list::AppListViewDelegate* TestShellDelegate::CreateAppListViewDelegate() { |
| 74 return NULL; | 83 return NULL; |
| 75 } | 84 } |
| (...skipping 13 matching lines...) Expand all Loading... |
| 89 SystemTray* tray) { | 98 SystemTray* tray) { |
| 90 return NULL; | 99 return NULL; |
| 91 } | 100 } |
| 92 | 101 |
| 93 UserWallpaperDelegate* TestShellDelegate::CreateUserWallpaperDelegate() { | 102 UserWallpaperDelegate* TestShellDelegate::CreateUserWallpaperDelegate() { |
| 94 return NULL; | 103 return NULL; |
| 95 } | 104 } |
| 96 | 105 |
| 97 } // namespace test | 106 } // namespace test |
| 98 } // namespace ash | 107 } // namespace ash |
| OLD | NEW |