| 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/accessibility_delegate.h" | 8 #include "ash/accessibility_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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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* large_cursor_view_;; |
| 77 views::View* help_view_; | 77 views::View* help_view_; |
| 78 views::View* settings_view_; | 78 views::View* settings_view_; |
| 79 views::View* autoclick_view_; | 79 views::View* autoclick_view_; |
| 80 views::View* virtual_keyboard_view_; |
| 80 | 81 |
| 81 bool spoken_feedback_enabled_; | 82 bool spoken_feedback_enabled_; |
| 82 bool high_contrast_enabled_; | 83 bool high_contrast_enabled_; |
| 83 bool screen_magnifier_enabled_; | 84 bool screen_magnifier_enabled_; |
| 84 bool large_cursor_enabled_; | 85 bool large_cursor_enabled_; |
| 85 bool autoclick_enabled_; | 86 bool autoclick_enabled_; |
| 87 bool virtual_keyboard_enabled_; |
| 86 user::LoginStatus login_; | 88 user::LoginStatus login_; |
| 87 | 89 |
| 88 friend class chromeos::TrayAccessibilityTest; | 90 friend class chromeos::TrayAccessibilityTest; |
| 89 DISALLOW_COPY_AND_ASSIGN(AccessibilityDetailedView); | 91 DISALLOW_COPY_AND_ASSIGN(AccessibilityDetailedView); |
| 90 }; | 92 }; |
| 91 | 93 |
| 92 } // namespace tray | 94 } // namespace tray |
| 93 | 95 |
| 94 class TrayAccessibility : public TrayImageItem, | 96 class TrayAccessibility : public TrayImageItem, |
| 95 public AccessibilityObserver { | 97 public AccessibilityObserver { |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 bool show_a11y_menu_on_lock_screen_; | 130 bool show_a11y_menu_on_lock_screen_; |
| 129 | 131 |
| 130 friend class chromeos::TrayAccessibilityTest; | 132 friend class chromeos::TrayAccessibilityTest; |
| 131 DISALLOW_COPY_AND_ASSIGN(TrayAccessibility); | 133 DISALLOW_COPY_AND_ASSIGN(TrayAccessibility); |
| 132 }; | 134 }; |
| 133 | 135 |
| 134 } // namespace internal | 136 } // namespace internal |
| 135 } // namespace ash | 137 } // namespace ash |
| 136 | 138 |
| 137 #endif // ASH_SYSTEM_TRAY_ACCESSIBILITY_H_ | 139 #endif // ASH_SYSTEM_TRAY_ACCESSIBILITY_H_ |
| OLD | NEW |