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

Side by Side Diff: chrome/browser/ui/ash/chrome_shell_delegate_views.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 | « chrome/browser/ui/ash/chrome_shell_delegate_chromeos.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "chrome/browser/ui/ash/chrome_shell_delegate.h" 5 #include "chrome/browser/ui/ash/chrome_shell_delegate.h"
6 6
7 #include "ash/magnifier/magnifier_constants.h" 7 #include "ash/magnifier/magnifier_constants.h"
8 #include "chrome/browser/ui/ash/caps_lock_delegate_views.h" 8 #include "chrome/browser/ui/ash/caps_lock_delegate_views.h"
9 #include "chrome/browser/ui/ash/window_positioner.h" 9 #include "chrome/browser/ui/ash/window_positioner.h"
10 10
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 } 67 }
68 68
69 double ChromeShellDelegate::GetSavedScreenMagnifierScale() { 69 double ChromeShellDelegate::GetSavedScreenMagnifierScale() {
70 return std::numeric_limits<double>::min(); 70 return std::numeric_limits<double>::min();
71 } 71 }
72 72
73 bool ChromeShellDelegate::ShouldAlwaysShowAccessibilityMenu() const { 73 bool ChromeShellDelegate::ShouldAlwaysShowAccessibilityMenu() const {
74 return false; 74 return false;
75 } 75 }
76 76
77 void ChromeShellDelegate::SilenceSpokenFeedback() const {
78 }
79
77 ash::SystemTrayDelegate* ChromeShellDelegate::CreateSystemTrayDelegate() { 80 ash::SystemTrayDelegate* ChromeShellDelegate::CreateSystemTrayDelegate() {
78 return NULL; 81 return NULL;
79 } 82 }
80 83
81 ash::UserWallpaperDelegate* ChromeShellDelegate::CreateUserWallpaperDelegate() { 84 ash::UserWallpaperDelegate* ChromeShellDelegate::CreateUserWallpaperDelegate() {
82 return NULL; 85 return NULL;
83 } 86 }
84 87
85 void ChromeShellDelegate::HandleMediaNextTrack() { 88 void ChromeShellDelegate::HandleMediaNextTrack() {
86 } 89 }
87 90
88 void ChromeShellDelegate::HandleMediaPlayPause() { 91 void ChromeShellDelegate::HandleMediaPlayPause() {
89 } 92 }
90 93
91 void ChromeShellDelegate::HandleMediaPrevTrack() { 94 void ChromeShellDelegate::HandleMediaPrevTrack() {
92 } 95 }
93 96
94 void ChromeShellDelegate::Observe(int type, 97 void ChromeShellDelegate::Observe(int type,
95 const content::NotificationSource& source, 98 const content::NotificationSource& source,
96 const content::NotificationDetails& details) { 99 const content::NotificationDetails& details) {
97 // MSVC++ warns about switch statements without any cases. 100 // MSVC++ warns about switch statements without any cases.
98 NOTREACHED() << "Unexpected notification " << type; 101 NOTREACHED() << "Unexpected notification " << type;
99 } 102 }
100 103
101 void ChromeShellDelegate::PlatformInit() { 104 void ChromeShellDelegate::PlatformInit() {
102 } 105 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/ash/chrome_shell_delegate_chromeos.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698