| 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 <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "ash/accessibility_delegate.h" | 10 #include "ash/accessibility_delegate.h" |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 void ButtonPressed(views::Button* sender, const ui::Event& event) override; | 83 void ButtonPressed(views::Button* sender, const ui::Event& event) override; |
| 84 | 84 |
| 85 views::View* spoken_feedback_view_; | 85 views::View* spoken_feedback_view_; |
| 86 views::View* high_contrast_view_; | 86 views::View* high_contrast_view_; |
| 87 views::View* screen_magnifier_view_; | 87 views::View* screen_magnifier_view_; |
| 88 views::View* large_cursor_view_; | 88 views::View* large_cursor_view_; |
| 89 views::View* help_view_; | 89 views::View* help_view_; |
| 90 views::View* settings_view_; | 90 views::View* settings_view_; |
| 91 views::View* autoclick_view_; | 91 views::View* autoclick_view_; |
| 92 views::View* virtual_keyboard_view_; | 92 views::View* virtual_keyboard_view_; |
| 93 views::View* mono_audio_view_; |
| 93 | 94 |
| 94 bool spoken_feedback_enabled_; | 95 bool spoken_feedback_enabled_; |
| 95 bool high_contrast_enabled_; | 96 bool high_contrast_enabled_; |
| 96 bool screen_magnifier_enabled_; | 97 bool screen_magnifier_enabled_; |
| 97 bool large_cursor_enabled_; | 98 bool large_cursor_enabled_; |
| 98 bool autoclick_enabled_; | 99 bool autoclick_enabled_; |
| 99 bool virtual_keyboard_enabled_; | 100 bool virtual_keyboard_enabled_; |
| 101 bool mono_audio_enabled_; |
| 100 user::LoginStatus login_; | 102 user::LoginStatus login_; |
| 101 | 103 |
| 102 friend class chromeos::TrayAccessibilityTest; | 104 friend class chromeos::TrayAccessibilityTest; |
| 103 DISALLOW_COPY_AND_ASSIGN(AccessibilityDetailedView); | 105 DISALLOW_COPY_AND_ASSIGN(AccessibilityDetailedView); |
| 104 }; | 106 }; |
| 105 | 107 |
| 106 } // namespace tray | 108 } // namespace tray |
| 107 | 109 |
| 108 class TrayAccessibility : public TrayImageItem, | 110 class TrayAccessibility : public TrayImageItem, |
| 109 public AccessibilityObserver { | 111 public AccessibilityObserver { |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 // A11y feature status on just entering the lock screen. | 146 // A11y feature status on just entering the lock screen. |
| 145 bool show_a11y_menu_on_lock_screen_; | 147 bool show_a11y_menu_on_lock_screen_; |
| 146 | 148 |
| 147 friend class chromeos::TrayAccessibilityTest; | 149 friend class chromeos::TrayAccessibilityTest; |
| 148 DISALLOW_COPY_AND_ASSIGN(TrayAccessibility); | 150 DISALLOW_COPY_AND_ASSIGN(TrayAccessibility); |
| 149 }; | 151 }; |
| 150 | 152 |
| 151 } // namespace ash | 153 } // namespace ash |
| 152 | 154 |
| 153 #endif // ASH_SYSTEM_TRAY_ACCESSIBILITY_H_ | 155 #endif // ASH_SYSTEM_TRAY_ACCESSIBILITY_H_ |
| OLD | NEW |