| 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_COMMON_SYSTEM_TRAY_ACCESSIBILITY_H_ | 5 #ifndef ASH_COMMON_SYSTEM_TRAY_ACCESSIBILITY_H_ |
| 6 #define ASH_COMMON_SYSTEM_TRAY_ACCESSIBILITY_H_ | 6 #define ASH_COMMON_SYSTEM_TRAY_ACCESSIBILITY_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "ash/common/accessibility_delegate.h" | 10 #include "ash/common/accessibility_delegate.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 class TrayAccessibilityTest; | 21 class TrayAccessibilityTest; |
| 22 } | 22 } |
| 23 | 23 |
| 24 namespace gfx { | 24 namespace gfx { |
| 25 struct VectorIcon; | 25 struct VectorIcon; |
| 26 } | 26 } |
| 27 | 27 |
| 28 namespace views { | 28 namespace views { |
| 29 class Button; | 29 class Button; |
| 30 class CustomButton; | 30 class CustomButton; |
| 31 class ImageView; | |
| 32 class Label; | 31 class Label; |
| 33 class View; | 32 class View; |
| 34 } | 33 } |
| 35 | 34 |
| 36 namespace ash { | 35 namespace ash { |
| 37 class HoverHighlightView; | 36 class HoverHighlightView; |
| 38 class SystemTrayItem; | 37 class SystemTrayItem; |
| 39 | 38 |
| 40 namespace tray { | 39 namespace tray { |
| 41 | 40 |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 147 // A11y feature status on just entering the lock screen. | 146 // A11y feature status on just entering the lock screen. |
| 148 bool show_a11y_menu_on_lock_screen_; | 147 bool show_a11y_menu_on_lock_screen_; |
| 149 | 148 |
| 150 friend class chromeos::TrayAccessibilityTest; | 149 friend class chromeos::TrayAccessibilityTest; |
| 151 DISALLOW_COPY_AND_ASSIGN(TrayAccessibility); | 150 DISALLOW_COPY_AND_ASSIGN(TrayAccessibility); |
| 152 }; | 151 }; |
| 153 | 152 |
| 154 } // namespace ash | 153 } // namespace ash |
| 155 | 154 |
| 156 #endif // ASH_COMMON_SYSTEM_TRAY_ACCESSIBILITY_H_ | 155 #endif // ASH_COMMON_SYSTEM_TRAY_ACCESSIBILITY_H_ |
| OLD | NEW |