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

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

Issue 874893003: Handles aria-dropeffect after getting its value from blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix typo 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 NSAccessibilityColumnIndexRangeAttribute, 164 NSAccessibilityColumnIndexRangeAttribute,
165 @"AXDropEffects",
165 NSAccessibilityEnabledAttribute, 166 NSAccessibilityEnabledAttribute,
166 NSAccessibilityExpandedAttribute, 167 NSAccessibilityExpandedAttribute,
167 NSAccessibilityFocusedAttribute, 168 NSAccessibilityFocusedAttribute,
168 @"AXGrabbed", 169 @"AXGrabbed",
169 NSAccessibilityIndexAttribute, 170 NSAccessibilityIndexAttribute,
170 @"AXLoaded", 171 @"AXLoaded",
171 @"AXLoadingProcess", 172 @"AXLoadingProcess",
172 NSAccessibilityNumberOfCharactersAttribute, 173 NSAccessibilityNumberOfCharactersAttribute,
173 NSAccessibilityOrientationAttribute, 174 NSAccessibilityOrientationAttribute,
174 @"AXPlaceholder", 175 @"AXPlaceholder",
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 const string AccessibilityTreeFormatter::GetAllowString() { 312 const string AccessibilityTreeFormatter::GetAllowString() {
312 return "@MAC-ALLOW:"; 313 return "@MAC-ALLOW:";
313 } 314 }
314 315
315 // static 316 // static
316 const string AccessibilityTreeFormatter::GetDenyString() { 317 const string AccessibilityTreeFormatter::GetDenyString() {
317 return "@MAC-DENY:"; 318 return "@MAC-DENY:";
318 } 319 }
319 320
320 } // namespace content 321 } // 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