| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 UI_BASE_ACCESSIBILITY_ACCESSIBILITY_TYPES_H_ | 5 #ifndef UI_BASE_ACCESSIBILITY_ACCESSIBILITY_TYPES_H_ |
| 6 #define UI_BASE_ACCESSIBILITY_ACCESSIBILITY_TYPES_H_ | 6 #define UI_BASE_ACCESSIBILITY_ACCESSIBILITY_TYPES_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 | 10 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 ROLE_OUTLINE, | 68 ROLE_OUTLINE, |
| 69 ROLE_OUTLINEITEM, | 69 ROLE_OUTLINEITEM, |
| 70 ROLE_PAGETAB, | 70 ROLE_PAGETAB, |
| 71 ROLE_PAGETABLIST, | 71 ROLE_PAGETABLIST, |
| 72 ROLE_PANE, | 72 ROLE_PANE, |
| 73 ROLE_PROGRESSBAR, | 73 ROLE_PROGRESSBAR, |
| 74 ROLE_PUSHBUTTON, | 74 ROLE_PUSHBUTTON, |
| 75 ROLE_RADIOBUTTON, | 75 ROLE_RADIOBUTTON, |
| 76 ROLE_SCROLLBAR, | 76 ROLE_SCROLLBAR, |
| 77 ROLE_SEPARATOR, | 77 ROLE_SEPARATOR, |
| 78 ROLE_SLIDER, |
| 78 ROLE_STATICTEXT, | 79 ROLE_STATICTEXT, |
| 79 ROLE_TEXT, | 80 ROLE_TEXT, |
| 80 ROLE_TITLEBAR, | 81 ROLE_TITLEBAR, |
| 81 ROLE_TOOLBAR, | 82 ROLE_TOOLBAR, |
| 82 ROLE_WINDOW | 83 ROLE_WINDOW |
| 83 }; | 84 }; |
| 84 | 85 |
| 85 // This defines an enumeration of the supported accessibility events in our | 86 // This defines an enumeration of the supported accessibility events in our |
| 86 // Views (e.g. used in View::NotifyAccessibilityEvent). Any interface using | 87 // Views (e.g. used in View::NotifyAccessibilityEvent). Any interface using |
| 87 // events must provide a conversion to its own events (see e.g. | 88 // events must provide a conversion to its own events (see e.g. |
| (...skipping 13 matching lines...) Expand all Loading... |
| 101 | 102 |
| 102 private: | 103 private: |
| 103 // Do not instantiate this class. | 104 // Do not instantiate this class. |
| 104 AccessibilityTypes() {} | 105 AccessibilityTypes() {} |
| 105 ~AccessibilityTypes() {} | 106 ~AccessibilityTypes() {} |
| 106 }; | 107 }; |
| 107 | 108 |
| 108 } // namespace ui | 109 } // namespace ui |
| 109 | 110 |
| 110 #endif // UI_BASE_ACCESSIBILITY_ACCESSIBILITY_TYPES_H_ | 111 #endif // UI_BASE_ACCESSIBILITY_ACCESSIBILITY_TYPES_H_ |
| OLD | NEW |