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

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

Issue 829883002: ARIA role menuitemcheckbox, menuitemradio should have AXMenuItemMarkChar ✓. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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_cocoa.mm » ('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 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW
« no previous file with comments | « no previous file | content/browser/accessibility/browser_accessibility_cocoa.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698