Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(696)

Side by Side Diff: ash/shell/shell_delegate_impl.cc

Issue 14674002: Support Shift+Search+Arrows to navigate and Control to silence speech everywhere (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed non-ash ChromeShellDelegate Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ash/shell/shell_delegate_impl.h ('k') | ash/shell_delegate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « ash/shell/shell_delegate_impl.h ('k') | ash/shell_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698