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

Side by Side Diff: chrome/browser/iaccessible_function_ids.h

Issue 20072: Finish taking out render_messages.h include from other headers. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2006-2008 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 // This defines an enumeration of IDs that can uniquely identify a call to a
6 // specific IAccessible function. Should match the support implemented in WebKit
7 // (functions marked with return value E_NOTIMPL are also excluded).
8
9 #ifndef CHROME_BROWSER_IACCESSIBLE_FUNCTION_IDS_H_
10 #define CHROME_BROWSER_IACCESSIBLE_FUNCTION_IDS_H_
11
12 enum IAccessibleID {
13 IACCESSIBLE_FUNC_NONE = 0,
14
15 // Supported IAccessible interface functions.
16 IACCESSIBLE_FUNC_ACCDODEFAULTACTION,
17 IACCESSIBLE_FUNC_ACCHITTEST,
18 IACCESSIBLE_FUNC_ACCLOCATION,
19 IACCESSIBLE_FUNC_ACCNAVIGATE,
20 IACCESSIBLE_FUNC_GET_ACCCHILD,
21 IACCESSIBLE_FUNC_GET_ACCCHILDCOUNT,
22 IACCESSIBLE_FUNC_GET_ACCDEFAULTACTION,
23 IACCESSIBLE_FUNC_GET_ACCDESCRIPTION,
24 IACCESSIBLE_FUNC_GET_ACCFOCUS,
25 IACCESSIBLE_FUNC_GET_ACCHELP,
26 IACCESSIBLE_FUNC_GET_ACCKEYBOARDSHORTCUT,
27 IACCESSIBLE_FUNC_GET_ACCNAME,
28 IACCESSIBLE_FUNC_GET_ACCPARENT,
29 IACCESSIBLE_FUNC_GET_ACCROLE,
30 IACCESSIBLE_FUNC_GET_ACCSTATE,
31 IACCESSIBLE_FUNC_GET_ACCVALUE
32
33 // The deprecated put_accName and put_accValue are not supported here, nor is
34 // accSelect, get_accHelpTopic and get_accSelection (matching WebKit's
35 // support).
36 };
37
38 #endif // CHROME_BROWSER_IACCESSIBLE_FUNCTION_IDS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698