| 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 <limits> | 7 #include <limits> |
| 8 | 8 |
| 9 #include "ash/caps_lock_delegate_stub.h" | 9 #include "ash/caps_lock_delegate_stub.h" |
| 10 #include "ash/host/root_window_host_factory.h" | 10 #include "ash/host/root_window_host_factory.h" |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 | 70 |
| 71 void TestShellDelegate::ToggleFullscreen() { | 71 void TestShellDelegate::ToggleFullscreen() { |
| 72 } | 72 } |
| 73 | 73 |
| 74 void TestShellDelegate::OpenFileManager(bool as_dialog) { | 74 void TestShellDelegate::OpenFileManager(bool as_dialog) { |
| 75 } | 75 } |
| 76 | 76 |
| 77 void TestShellDelegate::OpenCrosh() { | 77 void TestShellDelegate::OpenCrosh() { |
| 78 } | 78 } |
| 79 | 79 |
| 80 void TestShellDelegate::OpenMobileSetup(const std::string& service_path) { | |
| 81 } | |
| 82 | |
| 83 void TestShellDelegate::RestoreTab() { | 80 void TestShellDelegate::RestoreTab() { |
| 84 } | 81 } |
| 85 | 82 |
| 86 void TestShellDelegate::ShowKeyboardOverlay() { | 83 void TestShellDelegate::ShowKeyboardOverlay() { |
| 87 } | 84 } |
| 88 | 85 |
| 89 keyboard::KeyboardControllerProxy* | 86 keyboard::KeyboardControllerProxy* |
| 90 TestShellDelegate::CreateKeyboardControllerProxy() { | 87 TestShellDelegate::CreateKeyboardControllerProxy() { |
| 91 return NULL; | 88 return NULL; |
| 92 } | 89 } |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 base::string16 TestShellDelegate::GetProductName() const { | 210 base::string16 TestShellDelegate::GetProductName() const { |
| 214 return base::string16(); | 211 return base::string16(); |
| 215 } | 212 } |
| 216 | 213 |
| 217 TestSessionStateDelegate* TestShellDelegate::test_session_state_delegate() { | 214 TestSessionStateDelegate* TestShellDelegate::test_session_state_delegate() { |
| 218 return test_session_state_delegate_; | 215 return test_session_state_delegate_; |
| 219 } | 216 } |
| 220 | 217 |
| 221 } // namespace test | 218 } // namespace test |
| 222 } // namespace ash | 219 } // namespace ash |
| OLD | NEW |