| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 | 53 |
| 54 void TestShellDelegate::Search() { | 54 void TestShellDelegate::Search() { |
| 55 } | 55 } |
| 56 | 56 |
| 57 void TestShellDelegate::OpenFileManager() { | 57 void TestShellDelegate::OpenFileManager() { |
| 58 } | 58 } |
| 59 | 59 |
| 60 void TestShellDelegate::OpenCrosh() { | 60 void TestShellDelegate::OpenCrosh() { |
| 61 } | 61 } |
| 62 | 62 |
| 63 void TestShellDelegate::OpenMobileSetup() { | 63 void TestShellDelegate::OpenMobileSetup(const std::string& service_path) { |
| 64 } | 64 } |
| 65 | 65 |
| 66 void TestShellDelegate::RestoreTab() { | 66 void TestShellDelegate::RestoreTab() { |
| 67 } | 67 } |
| 68 | 68 |
| 69 void TestShellDelegate::ShowKeyboardOverlay() { | 69 void TestShellDelegate::ShowKeyboardOverlay() { |
| 70 } | 70 } |
| 71 | 71 |
| 72 void TestShellDelegate::ShowTaskManager() { | 72 void TestShellDelegate::ShowTaskManager() { |
| 73 } | 73 } |
| (...skipping 28 matching lines...) Expand all Loading... |
| 102 UserWallpaperDelegate* TestShellDelegate::CreateUserWallpaperDelegate() { | 102 UserWallpaperDelegate* TestShellDelegate::CreateUserWallpaperDelegate() { |
| 103 return NULL; | 103 return NULL; |
| 104 } | 104 } |
| 105 | 105 |
| 106 aura::client::UserActionClient* TestShellDelegate::CreateUserActionClient() { | 106 aura::client::UserActionClient* TestShellDelegate::CreateUserActionClient() { |
| 107 return NULL; | 107 return NULL; |
| 108 } | 108 } |
| 109 | 109 |
| 110 } // namespace test | 110 } // namespace test |
| 111 } // namespace ash | 111 } // namespace ash |
| OLD | NEW |