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 #include "ash/system/tray_accessibility.h" | 5 #include "ash/system/tray_accessibility.h" |
6 | 6 |
7 #include "ash/shell.h" | 7 #include "ash/shell.h" |
8 #include "ash/shell_delegate.h" | 8 #include "ash/shell_delegate.h" |
9 #include "ash/system/tray/hover_highlight_view.h" | 9 #include "ash/system/tray/hover_highlight_view.h" |
10 #include "ash/system/tray/system_tray.h" | 10 #include "ash/system/tray/system_tray.h" |
(...skipping 11 matching lines...) Expand all Loading... |
22 #include "ui/gfx/image/image.h" | 22 #include "ui/gfx/image/image.h" |
23 #include "ui/views/controls/image_view.h" | 23 #include "ui/views/controls/image_view.h" |
24 #include "ui/views/controls/label.h" | 24 #include "ui/views/controls/label.h" |
25 #include "ui/views/layout/box_layout.h" | 25 #include "ui/views/layout/box_layout.h" |
26 #include "ui/views/widget/widget.h" | 26 #include "ui/views/widget/widget.h" |
27 | 27 |
28 namespace ash { | 28 namespace ash { |
29 namespace internal { | 29 namespace internal { |
30 | 30 |
31 namespace { | 31 namespace { |
32 const int kPaddingAroundBottomRow = 5; | |
33 | 32 |
34 enum AccessibilityState { | 33 enum AccessibilityState { |
35 A11Y_NONE = 0, | 34 A11Y_NONE = 0, |
36 A11Y_SPOKEN_FEEDBACK = 1 << 0, | 35 A11Y_SPOKEN_FEEDBACK = 1 << 0, |
37 A11Y_HIGH_CONTRAST = 1 << 1, | 36 A11Y_HIGH_CONTRAST = 1 << 1, |
38 A11Y_SCREEN_MAGNIFIER = 1 << 2, | 37 A11Y_SCREEN_MAGNIFIER = 1 << 2, |
39 A11Y_LARGE_CURSOR = 1 << 3, | 38 A11Y_LARGE_CURSOR = 1 << 3, |
40 }; | 39 }; |
41 | 40 |
42 uint32 GetAccessibilityState() { | 41 uint32 GetAccessibilityState() { |
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
346 detailed_popup_->GetWidget()->Close(); | 345 detailed_popup_->GetWidget()->Close(); |
347 if (detailed_menu_) | 346 if (detailed_menu_) |
348 detailed_menu_->GetWidget()->Close(); | 347 detailed_menu_->GetWidget()->Close(); |
349 } | 348 } |
350 | 349 |
351 previous_accessibility_state_ = accessibility_state; | 350 previous_accessibility_state_ = accessibility_state; |
352 } | 351 } |
353 | 352 |
354 } // namespace internal | 353 } // namespace internal |
355 } // namespace ash | 354 } // namespace ash |
OLD | NEW |