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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 } | 132 } |
133 | 133 |
134 MagnifierType TestShellDelegate::GetMagnifierType() const { | 134 MagnifierType TestShellDelegate::GetMagnifierType() const { |
135 return screen_magnifier_type_; | 135 return screen_magnifier_type_; |
136 } | 136 } |
137 | 137 |
138 bool TestShellDelegate::ShouldAlwaysShowAccessibilityMenu() const { | 138 bool TestShellDelegate::ShouldAlwaysShowAccessibilityMenu() const { |
139 return false; | 139 return false; |
140 } | 140 } |
141 | 141 |
| 142 void TestShellDelegate::SilenceSpokenFeedback() const { |
| 143 } |
| 144 |
142 app_list::AppListViewDelegate* TestShellDelegate::CreateAppListViewDelegate() { | 145 app_list::AppListViewDelegate* TestShellDelegate::CreateAppListViewDelegate() { |
143 return NULL; | 146 return NULL; |
144 } | 147 } |
145 | 148 |
146 LauncherDelegate* TestShellDelegate::CreateLauncherDelegate( | 149 LauncherDelegate* TestShellDelegate::CreateLauncherDelegate( |
147 ash::LauncherModel* model) { | 150 ash::LauncherModel* model) { |
148 return new TestLauncherDelegate(model); | 151 return new TestLauncherDelegate(model); |
149 } | 152 } |
150 | 153 |
151 SystemTrayDelegate* TestShellDelegate::CreateSystemTrayDelegate() { | 154 SystemTrayDelegate* TestShellDelegate::CreateSystemTrayDelegate() { |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 base::string16 TestShellDelegate::GetProductName() const { | 216 base::string16 TestShellDelegate::GetProductName() const { |
214 return base::string16(); | 217 return base::string16(); |
215 } | 218 } |
216 | 219 |
217 TestSessionStateDelegate* TestShellDelegate::test_session_state_delegate() { | 220 TestSessionStateDelegate* TestShellDelegate::test_session_state_delegate() { |
218 return test_session_state_delegate_; | 221 return test_session_state_delegate_; |
219 } | 222 } |
220 | 223 |
221 } // namespace test | 224 } // namespace test |
222 } // namespace ash | 225 } // namespace ash |
OLD | NEW |