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 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
103 void TestShellDelegate::RestoreTab() { | 103 void TestShellDelegate::RestoreTab() { |
104 } | 104 } |
105 | 105 |
106 bool TestShellDelegate::RotatePaneFocus(Shell::Direction direction) { | 106 bool TestShellDelegate::RotatePaneFocus(Shell::Direction direction) { |
107 return true; | 107 return true; |
108 } | 108 } |
109 | 109 |
110 void TestShellDelegate::ShowKeyboardOverlay() { | 110 void TestShellDelegate::ShowKeyboardOverlay() { |
111 } | 111 } |
112 | 112 |
| 113 keyboard::KeyboardControllerProxy* |
| 114 TestShellDelegate::CreateKeyboardControllerProxy() { |
| 115 } |
| 116 |
113 void TestShellDelegate::ShowTaskManager() { | 117 void TestShellDelegate::ShowTaskManager() { |
114 } | 118 } |
115 | 119 |
116 content::BrowserContext* TestShellDelegate::GetCurrentBrowserContext() { | 120 content::BrowserContext* TestShellDelegate::GetCurrentBrowserContext() { |
117 current_browser_context_.reset(new content::TestBrowserContext()); | 121 current_browser_context_.reset(new content::TestBrowserContext()); |
118 return current_browser_context_.get(); | 122 return current_browser_context_.get(); |
119 } | 123 } |
120 | 124 |
121 void TestShellDelegate::ToggleSpokenFeedback( | 125 void TestShellDelegate::ToggleSpokenFeedback( |
122 AccessibilityNotificationVisibility notify) { | 126 AccessibilityNotificationVisibility notify) { |
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
234 can_lock_screen_ = can_lock_screen; | 238 can_lock_screen_ = can_lock_screen; |
235 } | 239 } |
236 | 240 |
237 string16 TestShellDelegate::GetProductName() const { | 241 string16 TestShellDelegate::GetProductName() const { |
238 return string16(); | 242 return string16(); |
239 } | 243 } |
240 | 244 |
241 | 245 |
242 } // namespace test | 246 } // namespace test |
243 } // namespace ash | 247 } // namespace ash |
OLD | NEW |