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/shell/shell_delegate_impl.h" | 5 #include "ash/shell/shell_delegate_impl.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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 } | 168 } |
169 | 169 |
170 MagnifierType ShellDelegateImpl::GetMagnifierType() const { | 170 MagnifierType ShellDelegateImpl::GetMagnifierType() const { |
171 return screen_magnifier_type_; | 171 return screen_magnifier_type_; |
172 } | 172 } |
173 | 173 |
174 bool ShellDelegateImpl::ShouldAlwaysShowAccessibilityMenu() const { | 174 bool ShellDelegateImpl::ShouldAlwaysShowAccessibilityMenu() const { |
175 return false; | 175 return false; |
176 } | 176 } |
177 | 177 |
| 178 void ShellDelegateImpl::SilenceSpokenFeedback() const { |
| 179 } |
| 180 |
178 app_list::AppListViewDelegate* ShellDelegateImpl::CreateAppListViewDelegate() { | 181 app_list::AppListViewDelegate* ShellDelegateImpl::CreateAppListViewDelegate() { |
179 return ash::shell::CreateAppListViewDelegate(); | 182 return ash::shell::CreateAppListViewDelegate(); |
180 } | 183 } |
181 | 184 |
182 ash::LauncherDelegate* ShellDelegateImpl::CreateLauncherDelegate( | 185 ash::LauncherDelegate* ShellDelegateImpl::CreateLauncherDelegate( |
183 ash::LauncherModel* model) { | 186 ash::LauncherModel* model) { |
184 launcher_delegate_ = new LauncherDelegateImpl(watcher_); | 187 launcher_delegate_ = new LauncherDelegateImpl(watcher_); |
185 return launcher_delegate_; | 188 return launcher_delegate_; |
186 } | 189 } |
187 | 190 |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 RootWindowHostFactory* ShellDelegateImpl::CreateRootWindowHostFactory() { | 247 RootWindowHostFactory* ShellDelegateImpl::CreateRootWindowHostFactory() { |
245 return RootWindowHostFactory::Create(); | 248 return RootWindowHostFactory::Create(); |
246 } | 249 } |
247 | 250 |
248 base::string16 ShellDelegateImpl::GetProductName() const { | 251 base::string16 ShellDelegateImpl::GetProductName() const { |
249 return base::string16(); | 252 return base::string16(); |
250 } | 253 } |
251 | 254 |
252 } // namespace shell | 255 } // namespace shell |
253 } // namespace ash | 256 } // namespace ash |
OLD | NEW |