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

Side by Side Diff: content/public/common/accessibility_mode.h

Issue 12335101: Move some accessibility methods, enums and interfaces into the content/public API. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Remove #include which crept back in" Created 7 years, 9 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
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_PUBLIC_COMMON_ACCESSIBILITY_MODE_H_
6 #define CONTENT_PUBLIC_COMMON_ACCESSIBILITY_MODE_H_
7
8 namespace content {
9
10 enum AccessibilityMode {
11 // WebKit accessibility is off and no accessibility information is
12 // sent from the renderer to the browser process.
13 ACCESSIBILITY_MODE_OFF,
14
15 // WebKit accessibility is on, but only limited information about
16 // editable text nodes is sent to the browser process. Useful for
17 // implementing limited UIA on tablets.
18 ACCESSIBILITY_MODE_EDITABLE_TEXT_ONLY,
19
20 // WebKit accessibility is on, and the full accessibility tree is synced
21 // to the browser process. Useful for screen readers and magnifiers.
22 ACCESSIBILITY_MODE_COMPLETE,
23 };
24
25 } // namespace content
26
27 #endif // CONTENT_PUBLIC_COMMON_ACCESSIBILITY_MODE_H_
OLDNEW
« no previous file with comments | « content/public/browser/render_widget_host.h ('k') | content/public/test/accessibility_test_utils_win.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698