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

Side by Side Diff: content/common/view_message_enums.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
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 #ifndef CONTENT_COMMON_VIEW_MESSAGES_ENUMS_H_ 5 #ifndef CONTENT_COMMON_VIEW_MESSAGES_ENUMS_H_
6 #define CONTENT_COMMON_VIEW_MESSAGES_ENUMS_H_ 6 #define CONTENT_COMMON_VIEW_MESSAGES_ENUMS_H_
7 7
8 #include "ipc/ipc_message_macros.h" 8 #include "ipc/ipc_message_macros.h"
9 9
10 // Values that may be OR'd together to form the 'flags' parameter of a 10 // Values that may be OR'd together to form the 'flags' parameter of a
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 RESTORE, 46 RESTORE,
47 47
48 // Like RESTORE, except that the navigation contains POST data. 48 // Like RESTORE, except that the navigation contains POST data.
49 RESTORE_WITH_POST, 49 RESTORE_WITH_POST,
50 50
51 // Navigation type not categorized by the other types. 51 // Navigation type not categorized by the other types.
52 NORMAL 52 NORMAL
53 }; 53 };
54 }; 54 };
55 55
56 enum AccessibilityMode {
57 // WebKit accessibility is off and no accessibility information is
58 // sent from the renderer to the browser process.
59 AccessibilityModeOff,
60
61 // WebKit accessibility is on, but only limited information about
62 // editable text nodes is sent to the browser process. Useful for
63 // implementing limited UIA on tablets.
64 AccessibilityModeEditableTextOnly,
65
66 // WebKit accessibility is on, and the full accessibility tree is synced
67 // to the browser process. Useful for screen readers and magnifiers.
68 AccessibilityModeComplete,
69 };
70
71 #endif // CONTENT_COMMON_VIEW_MESSAGES_ENUMS_H_ 56 #endif // CONTENT_COMMON_VIEW_MESSAGES_ENUMS_H_
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_widget_host_impl.cc ('k') | content/common/view_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698