Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(184)

Unified Diff: ash/common/system/tray_accessibility.h

Issue 2771963002: List all a11y featuers in ash system menu (Closed)
Patch Set: Fix typo. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/common/metrics/user_metrics_action.h ('k') | ash/common/system/tray_accessibility.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/common/system/tray_accessibility.h
diff --git a/ash/common/system/tray_accessibility.h b/ash/common/system/tray_accessibility.h
index 472ab0f944006c7895a6e73cd3aa4315bfe59b3d..26b822f5338e2b49a427a19cc6e17cedce934cfa 100644
--- a/ash/common/system/tray_accessibility.h
+++ b/ash/common/system/tray_accessibility.h
@@ -80,22 +80,34 @@ class AccessibilityDetailedView : public TrayDetailsView,
bool highlight,
bool checked,
const gfx::VectorIcon& icon);
-
- views::View* spoken_feedback_view_;
- views::View* high_contrast_view_;
- views::View* screen_magnifier_view_;
- views::View* large_cursor_view_;
- views::CustomButton* help_view_;
- views::CustomButton* settings_view_;
- views::View* autoclick_view_;
- views::View* virtual_keyboard_view_;
-
- bool spoken_feedback_enabled_;
- bool high_contrast_enabled_;
- bool screen_magnifier_enabled_;
- bool large_cursor_enabled_;
- bool autoclick_enabled_;
- bool virtual_keyboard_enabled_;
+ HoverHighlightView* AddScrollListItemWithoutIcon(const base::string16& text,
+ bool checked);
+
+ void AddSubHeader(const base::string16& header_text);
+
+ views::View* spoken_feedback_view_ = nullptr;
+ views::View* high_contrast_view_ = nullptr;
+ views::View* screen_magnifier_view_ = nullptr;
+ views::View* large_cursor_view_ = nullptr;
+ views::CustomButton* help_view_ = nullptr;
+ views::CustomButton* settings_view_ = nullptr;
+ views::View* autoclick_view_ = nullptr;
+ views::View* virtual_keyboard_view_ = nullptr;
+ views::View* mono_audio_view_ = nullptr;
+ views::View* caret_highlight_view_ = nullptr;
+ views::View* highlight_mouse_cursor_view_ = nullptr;
+ views::View* highlight_keyboard_focus_view_ = nullptr;
+
+ bool spoken_feedback_enabled_ = false;
+ bool high_contrast_enabled_ = false;
+ bool screen_magnifier_enabled_ = false;
+ bool large_cursor_enabled_ = false;
+ bool autoclick_enabled_ = false;
+ bool virtual_keyboard_enabled_ = false;
+ bool mono_audio_enabled_ = false;
+ bool caret_highlight_enabled_ = false;
+ bool highlight_mouse_cursor_enabled_ = false;
+ bool highlight_keyboard_focus_enabled_ = false;
LoginStatus login_;
friend class chromeos::TrayAccessibilityTest;
« no previous file with comments | « ash/common/metrics/user_metrics_action.h ('k') | ash/common/system/tray_accessibility.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698