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 #ifndef ASH_SHELL_SHELL_DELEGATE_IMPL_H_ | 5 #ifndef ASH_SHELL_SHELL_DELEGATE_IMPL_H_ |
6 #define ASH_SHELL_SHELL_DELEGATE_IMPL_H_ | 6 #define ASH_SHELL_SHELL_DELEGATE_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "ash/shell_delegate.h" | 10 #include "ash/shell_delegate.h" |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 virtual void ToggleSpokenFeedback( | 50 virtual void ToggleSpokenFeedback( |
51 AccessibilityNotificationVisibility notify) OVERRIDE; | 51 AccessibilityNotificationVisibility notify) OVERRIDE; |
52 virtual bool IsSpokenFeedbackEnabled() const OVERRIDE; | 52 virtual bool IsSpokenFeedbackEnabled() const OVERRIDE; |
53 virtual void ToggleHighContrast() OVERRIDE; | 53 virtual void ToggleHighContrast() OVERRIDE; |
54 virtual bool IsHighContrastEnabled() const OVERRIDE; | 54 virtual bool IsHighContrastEnabled() const OVERRIDE; |
55 virtual void SetMagnifierEnabled(bool enabled) OVERRIDE; | 55 virtual void SetMagnifierEnabled(bool enabled) OVERRIDE; |
56 virtual void SetMagnifierType(MagnifierType type) OVERRIDE; | 56 virtual void SetMagnifierType(MagnifierType type) OVERRIDE; |
57 virtual bool IsMagnifierEnabled() const OVERRIDE; | 57 virtual bool IsMagnifierEnabled() const OVERRIDE; |
58 virtual MagnifierType GetMagnifierType() const OVERRIDE; | 58 virtual MagnifierType GetMagnifierType() const OVERRIDE; |
59 virtual bool ShouldAlwaysShowAccessibilityMenu() const OVERRIDE; | 59 virtual bool ShouldAlwaysShowAccessibilityMenu() const OVERRIDE; |
| 60 virtual void SilenceSpokenFeedback() const OVERRIDE; |
60 virtual app_list::AppListViewDelegate* CreateAppListViewDelegate() OVERRIDE; | 61 virtual app_list::AppListViewDelegate* CreateAppListViewDelegate() OVERRIDE; |
61 virtual ash::LauncherDelegate* CreateLauncherDelegate( | 62 virtual ash::LauncherDelegate* CreateLauncherDelegate( |
62 ash::LauncherModel* model) OVERRIDE; | 63 ash::LauncherModel* model) OVERRIDE; |
63 virtual ash::SystemTrayDelegate* CreateSystemTrayDelegate() OVERRIDE; | 64 virtual ash::SystemTrayDelegate* CreateSystemTrayDelegate() OVERRIDE; |
64 virtual ash::UserWallpaperDelegate* CreateUserWallpaperDelegate() OVERRIDE; | 65 virtual ash::UserWallpaperDelegate* CreateUserWallpaperDelegate() OVERRIDE; |
65 virtual ash::CapsLockDelegate* CreateCapsLockDelegate() OVERRIDE; | 66 virtual ash::CapsLockDelegate* CreateCapsLockDelegate() OVERRIDE; |
66 virtual ash::SessionStateDelegate* CreateSessionStateDelegate() OVERRIDE; | 67 virtual ash::SessionStateDelegate* CreateSessionStateDelegate() OVERRIDE; |
67 virtual aura::client::UserActionClient* CreateUserActionClient() OVERRIDE; | 68 virtual aura::client::UserActionClient* CreateUserActionClient() OVERRIDE; |
68 virtual void OpenFeedbackPage() OVERRIDE; | 69 virtual void OpenFeedbackPage() OVERRIDE; |
69 virtual void RecordUserMetricsAction(UserMetricsAction action) OVERRIDE; | 70 virtual void RecordUserMetricsAction(UserMetricsAction action) OVERRIDE; |
(...skipping 21 matching lines...) Expand all Loading... |
91 bool screen_magnifier_enabled_; | 92 bool screen_magnifier_enabled_; |
92 MagnifierType screen_magnifier_type_; | 93 MagnifierType screen_magnifier_type_; |
93 | 94 |
94 DISALLOW_COPY_AND_ASSIGN(ShellDelegateImpl); | 95 DISALLOW_COPY_AND_ASSIGN(ShellDelegateImpl); |
95 }; | 96 }; |
96 | 97 |
97 } // namespace shell | 98 } // namespace shell |
98 } // namespace ash | 99 } // namespace ash |
99 | 100 |
100 #endif // ASH_SHELL_SHELL_DELEGATE_IMPL_H_ | 101 #endif // ASH_SHELL_SHELL_DELEGATE_IMPL_H_ |
OLD | NEW |