| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 CHROME_COMMON_ACCESSIBILITY_TYPES_H_ | 5 #ifndef VIEWS_ACCESSIBILITY_ACCESSIBILITY_TYPES_H_ |
| 6 #define CHROME_COMMON_ACCESSIBILITY_TYPES_H_ | 6 #define VIEWS_ACCESSIBILITY_ACCESSIBILITY_TYPES_H_ |
| 7 | 7 |
| 8 //////////////////////////////////////////////////////////////////////////////// | 8 //////////////////////////////////////////////////////////////////////////////// |
| 9 // | 9 // |
| 10 // AccessibilityTypes | 10 // AccessibilityTypes |
| 11 // | 11 // |
| 12 // Provides enumerations used to preserve platform-independence in accessibility | 12 // Provides enumerations used to preserve platform-independence in accessibility |
| 13 // functions used in various Views, both in Browser\Views and Views. | 13 // functions used in various Views, both in Browser\Views and Views. |
| 14 // | 14 // |
| 15 //////////////////////////////////////////////////////////////////////////////// | 15 //////////////////////////////////////////////////////////////////////////////// |
| 16 class AccessibilityTypes { | 16 class AccessibilityTypes { |
| (...skipping 21 matching lines...) Expand all Loading... |
| 38 STATE_HASPOPUP, | 38 STATE_HASPOPUP, |
| 39 STATE_READONLY | 39 STATE_READONLY |
| 40 }; | 40 }; |
| 41 | 41 |
| 42 private: | 42 private: |
| 43 // Do not instantiate this class. | 43 // Do not instantiate this class. |
| 44 AccessibilityTypes() {} | 44 AccessibilityTypes() {} |
| 45 ~AccessibilityTypes() {} | 45 ~AccessibilityTypes() {} |
| 46 }; | 46 }; |
| 47 | 47 |
| 48 #endif // CHROME_COMMON_ACCESSIBILITY_TYPES_H_ | 48 #endif // VIEWS_ACCESSIBILITY_ACCESSIBILITY_TYPES_H_ |
| OLD | NEW |