| 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 NSAccessibilityOrientationAttribute, | 170 NSAccessibilityOrientationAttribute, |
| 171 @"AXRequired", | 171 @"AXRequired", |
| 172 NSAccessibilityRowIndexRangeAttribute, | 172 NSAccessibilityRowIndexRangeAttribute, |
| 173 NSAccessibilitySelectedChildrenAttribute, | 173 NSAccessibilitySelectedChildrenAttribute, |
| 174 NSAccessibilityTitleUIElementAttribute, | 174 NSAccessibilityTitleUIElementAttribute, |
| 175 NSAccessibilityURLAttribute, | 175 NSAccessibilityURLAttribute, |
| 176 NSAccessibilityVisibleCharacterRangeAttribute, | 176 NSAccessibilityVisibleCharacterRangeAttribute, |
| 177 NSAccessibilityVisibleChildrenAttribute, | 177 NSAccessibilityVisibleChildrenAttribute, |
| 178 @"AXVisited", | 178 @"AXVisited", |
| 179 @"AXLinkedUIElements", | 179 @"AXLinkedUIElements", |
| 180 NSAccessibilityExpandedAttribute, |
| 180 nil]; | 181 nil]; |
| 181 return [array retain]; | 182 return [array retain]; |
| 182 } | 183 } |
| 183 | 184 |
| 184 } // namespace | 185 } // namespace |
| 185 | 186 |
| 186 void AccessibilityTreeFormatter::Initialize() { | 187 void AccessibilityTreeFormatter::Initialize() { |
| 187 } | 188 } |
| 188 | 189 |
| 189 | 190 |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 301 const string AccessibilityTreeFormatter::GetAllowString() { | 302 const string AccessibilityTreeFormatter::GetAllowString() { |
| 302 return "@MAC-ALLOW:"; | 303 return "@MAC-ALLOW:"; |
| 303 } | 304 } |
| 304 | 305 |
| 305 // static | 306 // static |
| 306 const string AccessibilityTreeFormatter::GetDenyString() { | 307 const string AccessibilityTreeFormatter::GetDenyString() { |
| 307 return "@MAC-DENY:"; | 308 return "@MAC-DENY:"; |
| 308 } | 309 } |
| 309 | 310 |
| 310 } // namespace content | 311 } // namespace content |
| OLD | NEW |