| 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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 176 @"AXPlaceholder", | 176 @"AXPlaceholder", |
| 177 @"AXRequired", | 177 @"AXRequired", |
| 178 NSAccessibilityRowIndexRangeAttribute, | 178 NSAccessibilityRowIndexRangeAttribute, |
| 179 NSAccessibilitySelectedChildrenAttribute, | 179 NSAccessibilitySelectedChildrenAttribute, |
| 180 NSAccessibilityTitleUIElementAttribute, | 180 NSAccessibilityTitleUIElementAttribute, |
| 181 NSAccessibilityURLAttribute, | 181 NSAccessibilityURLAttribute, |
| 182 NSAccessibilityVisibleCharacterRangeAttribute, | 182 NSAccessibilityVisibleCharacterRangeAttribute, |
| 183 NSAccessibilityVisibleChildrenAttribute, | 183 NSAccessibilityVisibleChildrenAttribute, |
| 184 @"AXVisited", | 184 @"AXVisited", |
| 185 @"AXLinkedUIElements", | 185 @"AXLinkedUIElements", |
| 186 @"AXMenuItemMarkChar", |
| 186 nil]; | 187 nil]; |
| 187 return [array retain]; | 188 return [array retain]; |
| 188 } | 189 } |
| 189 | 190 |
| 190 } // namespace | 191 } // namespace |
| 191 | 192 |
| 192 void AccessibilityTreeFormatter::Initialize() { | 193 void AccessibilityTreeFormatter::Initialize() { |
| 193 } | 194 } |
| 194 | 195 |
| 195 | 196 |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 const string AccessibilityTreeFormatter::GetAllowString() { | 314 const string AccessibilityTreeFormatter::GetAllowString() { |
| 314 return "@MAC-ALLOW:"; | 315 return "@MAC-ALLOW:"; |
| 315 } | 316 } |
| 316 | 317 |
| 317 // static | 318 // static |
| 318 const string AccessibilityTreeFormatter::GetDenyString() { | 319 const string AccessibilityTreeFormatter::GetDenyString() { |
| 319 return "@MAC-DENY:"; | 320 return "@MAC-DENY:"; |
| 320 } | 321 } |
| 321 | 322 |
| 322 } // namespace content | 323 } // namespace content |
| OLD | NEW |