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

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

Issue 825613002: Expose html placeholder attribute as AXPlaceholder: <value> on MAC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
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