| 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::OpenBookmarkManager() { |
| 67 } |
| 68 |
| 69 void TestShellDelegate::OpenClearBrowsingData() { |
| 70 } |
| 71 |
| 72 void TestShellDelegate::OpenDownloads() { |
| 73 } |
| 74 |
| 75 void TestShellDelegate::OpenHelpPage() { |
| 76 } |
| 77 |
| 78 void TestShellDelegate::OpenHistory() { |
| 79 } |
| 80 |
| 81 void TestShellDelegate::OpenHome() { |
| 82 } |
| 83 |
| 84 void TestShellDelegate::RestoreTab() { |
| 85 } |
| 86 |
| 63 void TestShellDelegate::ShowKeyboardOverlay(ui::AcceleratorTarget* target) { | 87 void TestShellDelegate::ShowKeyboardOverlay(ui::AcceleratorTarget* target) { |
| 64 } | 88 } |
| 65 | 89 |
| 90 void TestShellDelegate::ShowTaskManager() { |
| 91 } |
| 92 |
| 66 content::BrowserContext* TestShellDelegate::GetCurrentBrowserContext() { | 93 content::BrowserContext* TestShellDelegate::GetCurrentBrowserContext() { |
| 67 return new TestBrowserContext(); | 94 return new TestBrowserContext(); |
| 68 } | 95 } |
| 69 | 96 |
| 70 void TestShellDelegate::ToggleSpokenFeedback() { | 97 void TestShellDelegate::ToggleSpokenFeedback() { |
| 71 } | 98 } |
| 72 | 99 |
| 73 app_list::AppListViewDelegate* TestShellDelegate::CreateAppListViewDelegate() { | 100 app_list::AppListViewDelegate* TestShellDelegate::CreateAppListViewDelegate() { |
| 74 return NULL; | 101 return NULL; |
| 75 } | 102 } |
| (...skipping 13 matching lines...) Expand all Loading... |
| 89 SystemTray* tray) { | 116 SystemTray* tray) { |
| 90 return NULL; | 117 return NULL; |
| 91 } | 118 } |
| 92 | 119 |
| 93 UserWallpaperDelegate* TestShellDelegate::CreateUserWallpaperDelegate() { | 120 UserWallpaperDelegate* TestShellDelegate::CreateUserWallpaperDelegate() { |
| 94 return NULL; | 121 return NULL; |
| 95 } | 122 } |
| 96 | 123 |
| 97 } // namespace test | 124 } // namespace test |
| 98 } // namespace ash | 125 } // namespace ash |
| OLD | NEW |