| 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 "content/browser/accessibility/accessibility_tree_formatter.h" | 5 #include "content/browser/accessibility/accessibility_tree_formatter.h" |
| 6 | 6 |
| 7 #import <Cocoa/Cocoa.h> | 7 #import <Cocoa/Cocoa.h> |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 @"AXARIALive", | 162 @"AXARIALive", |
| 163 @"AXARIARelevant", | 163 @"AXARIARelevant", |
| 164 NSAccessibilityColumnIndexRangeAttribute, | 164 NSAccessibilityColumnIndexRangeAttribute, |
| 165 NSAccessibilityEnabledAttribute, | 165 NSAccessibilityEnabledAttribute, |
| 166 NSAccessibilityFocusedAttribute, | 166 NSAccessibilityFocusedAttribute, |
| 167 NSAccessibilityIndexAttribute, | 167 NSAccessibilityIndexAttribute, |
| 168 @"AXLoaded", | 168 @"AXLoaded", |
| 169 @"AXLoadingProcess", | 169 @"AXLoadingProcess", |
| 170 NSAccessibilityNumberOfCharactersAttribute, | 170 NSAccessibilityNumberOfCharactersAttribute, |
| 171 NSAccessibilityOrientationAttribute, | 171 NSAccessibilityOrientationAttribute, |
| 172 @"AXPlaceholder", |
| 172 @"AXRequired", | 173 @"AXRequired", |
| 173 NSAccessibilityRowIndexRangeAttribute, | 174 NSAccessibilityRowIndexRangeAttribute, |
| 174 NSAccessibilitySelectedChildrenAttribute, | 175 NSAccessibilitySelectedChildrenAttribute, |
| 175 NSAccessibilityTitleUIElementAttribute, | 176 NSAccessibilityTitleUIElementAttribute, |
| 176 NSAccessibilityURLAttribute, | 177 NSAccessibilityURLAttribute, |
| 177 NSAccessibilityVisibleCharacterRangeAttribute, | 178 NSAccessibilityVisibleCharacterRangeAttribute, |
| 178 NSAccessibilityVisibleChildrenAttribute, | 179 NSAccessibilityVisibleChildrenAttribute, |
| 179 @"AXVisited", | 180 @"AXVisited", |
| 180 @"AXLinkedUIElements", | 181 @"AXLinkedUIElements", |
| 181 NSAccessibilityExpandedAttribute, | 182 NSAccessibilityExpandedAttribute, |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 const string AccessibilityTreeFormatter::GetAllowString() { | 310 const string AccessibilityTreeFormatter::GetAllowString() { |
| 310 return "@MAC-ALLOW:"; | 311 return "@MAC-ALLOW:"; |
| 311 } | 312 } |
| 312 | 313 |
| 313 // static | 314 // static |
| 314 const string AccessibilityTreeFormatter::GetDenyString() { | 315 const string AccessibilityTreeFormatter::GetDenyString() { |
| 315 return "@MAC-DENY:"; | 316 return "@MAC-DENY:"; |
| 316 } | 317 } |
| 317 | 318 |
| 318 } // namespace content | 319 } // namespace content |
| OLD | NEW |