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

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

Issue 665843002: Change condition for adding AX_STATE_EXPANDED (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove AXExpanded Created 6 years, 1 month 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
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