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