OLD | NEW |
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 Loading... |
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 } |
OLD | NEW |