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_SYSTEM_TRAY_ACCESSIBILITY_H_ | 5 #ifndef ASH_SYSTEM_TRAY_ACCESSIBILITY_H_ |
6 #define ASH_SYSTEM_TRAY_ACCESSIBILITY_H_ | 6 #define ASH_SYSTEM_TRAY_ACCESSIBILITY_H_ |
7 | 7 |
8 #include "ash/shell_delegate.h" | 8 #include "ash/shell_delegate.h" |
9 #include "ash/shell_observer.h" | 9 #include "ash/shell_observer.h" |
10 #include "ash/system/tray/tray_details_view.h" | 10 #include "ash/system/tray/tray_details_view.h" |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 bool checked); | 66 bool checked); |
67 // Overridden from ViewClickListener. | 67 // Overridden from ViewClickListener. |
68 virtual void OnViewClicked(views::View* sender) OVERRIDE; | 68 virtual void OnViewClicked(views::View* sender) OVERRIDE; |
69 // Overridden from ButtonListener. | 69 // Overridden from ButtonListener. |
70 virtual void ButtonPressed(views::Button* sender, | 70 virtual void ButtonPressed(views::Button* sender, |
71 const ui::Event& event) OVERRIDE; | 71 const ui::Event& event) OVERRIDE; |
72 | 72 |
73 views::View* spoken_feedback_view_; | 73 views::View* spoken_feedback_view_; |
74 views::View* high_contrast_view_; | 74 views::View* high_contrast_view_; |
75 views::View* screen_magnifier_view_;; | 75 views::View* screen_magnifier_view_;; |
| 76 views::View* large_cursor_view_;; |
76 views::View* help_view_; | 77 views::View* help_view_; |
77 views::View* settings_view_; | 78 views::View* settings_view_; |
78 | 79 |
79 bool spoken_feedback_enabled_; | 80 bool spoken_feedback_enabled_; |
80 bool high_contrast_enabled_; | 81 bool high_contrast_enabled_; |
81 bool screen_magnifier_enabled_; | 82 bool screen_magnifier_enabled_; |
| 83 bool large_cursor_enabled_; |
82 user::LoginStatus login_; | 84 user::LoginStatus login_; |
83 | 85 |
84 friend class chromeos::TrayAccessibilityTest; | 86 friend class chromeos::TrayAccessibilityTest; |
85 DISALLOW_COPY_AND_ASSIGN(AccessibilityDetailedView); | 87 DISALLOW_COPY_AND_ASSIGN(AccessibilityDetailedView); |
86 }; | 88 }; |
87 | 89 |
88 } // namespace tray | 90 } // namespace tray |
89 | 91 |
90 class TrayAccessibility : public TrayImageItem, | 92 class TrayAccessibility : public TrayImageItem, |
91 public AccessibilityObserver { | 93 public AccessibilityObserver { |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 bool show_a11y_menu_on_lock_screen_; | 126 bool show_a11y_menu_on_lock_screen_; |
125 | 127 |
126 friend class chromeos::TrayAccessibilityTest; | 128 friend class chromeos::TrayAccessibilityTest; |
127 DISALLOW_COPY_AND_ASSIGN(TrayAccessibility); | 129 DISALLOW_COPY_AND_ASSIGN(TrayAccessibility); |
128 }; | 130 }; |
129 | 131 |
130 } // namespace internal | 132 } // namespace internal |
131 } // namespace ash | 133 } // namespace ash |
132 | 134 |
133 #endif // ASH_SYSTEM_TRAY_ACCESSIBILITY_H_ | 135 #endif // ASH_SYSTEM_TRAY_ACCESSIBILITY_H_ |
OLD | NEW |