Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(312)

Side by Side Diff: content/browser/accessibility/accessibility_tree_formatter_mac.mm

Issue 1063383005: Chromium side Implementation to expose aria properties - setsize & posinset (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updating expectations on android Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | content/browser/accessibility/browser_accessibility_android.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 NSAccessibilityDescriptionAttribute, 154 NSAccessibilityDescriptionAttribute,
155 NSAccessibilityHelpAttribute, 155 NSAccessibilityHelpAttribute,
156 @"AXInvalid", 156 @"AXInvalid",
157 NSAccessibilityDisclosingAttribute, 157 NSAccessibilityDisclosingAttribute,
158 NSAccessibilityDisclosureLevelAttribute, 158 NSAccessibilityDisclosureLevelAttribute,
159 @"AXAccessKey", 159 @"AXAccessKey",
160 @"AXARIAAtomic", 160 @"AXARIAAtomic",
161 @"AXARIABusy", 161 @"AXARIABusy",
162 @"AXARIALive", 162 @"AXARIALive",
163 @"AXARIARelevant", 163 @"AXARIARelevant",
164 @"AXARIASetSize",
165 @"AXARIAPosInSet",
164 NSAccessibilityColumnIndexRangeAttribute, 166 NSAccessibilityColumnIndexRangeAttribute,
165 @"AXDropEffects", 167 @"AXDropEffects",
166 NSAccessibilityEnabledAttribute, 168 NSAccessibilityEnabledAttribute,
167 NSAccessibilityExpandedAttribute, 169 NSAccessibilityExpandedAttribute,
168 NSAccessibilityFocusedAttribute, 170 NSAccessibilityFocusedAttribute,
169 @"AXGrabbed", 171 @"AXGrabbed",
170 NSAccessibilityIndexAttribute, 172 NSAccessibilityIndexAttribute,
171 @"AXLoaded", 173 @"AXLoaded",
172 @"AXLoadingProcess", 174 @"AXLoadingProcess",
173 NSAccessibilityNumberOfCharactersAttribute, 175 NSAccessibilityNumberOfCharactersAttribute,
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
313 const string AccessibilityTreeFormatter::GetAllowString() { 315 const string AccessibilityTreeFormatter::GetAllowString() {
314 return "@MAC-ALLOW:"; 316 return "@MAC-ALLOW:";
315 } 317 }
316 318
317 // static 319 // static
318 const string AccessibilityTreeFormatter::GetDenyString() { 320 const string AccessibilityTreeFormatter::GetDenyString() {
319 return "@MAC-DENY:"; 321 return "@MAC-DENY:";
320 } 322 }
321 323
322 } // namespace content 324 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/browser/accessibility/browser_accessibility_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698