OLD | NEW |
---|---|
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_PUBLIC_TEST_ACCESSIBILITY_TEST_UTILS_WIN_H_ | 5 #ifndef CONTENT_PUBLIC_TEST_ACCESSIBILITY_TEST_UTILS_WIN_H_ |
dmazzoni
2013/02/28 18:59:12
Update this
aboxhall
2013/02/28 22:12:59
Done.
| |
6 #define CONTENT_PUBLIC_TEST_ACCESSIBILITY_TEST_UTILS_WIN_H_ | 6 #define CONTENT_PUBLIC_TEST_ACCESSIBILITY_TEST_UTILS_WIN_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "base/string16.h" | 11 #include "base/string16.h" |
12 | 12 |
13 namespace content { | 13 namespace content { |
14 | 14 |
15 string16 IAccessibleRoleToString(int32 ia_role); | 15 string16 IAccessibleRoleToString(int32 ia_role); |
16 string16 IAccessible2RoleToString(int32 ia_role); | 16 string16 IAccessible2RoleToString(int32 ia_role); |
17 string16 IAccessibleStateToString(int32 ia_state); | 17 string16 IAccessibleStateToString(int32 ia_state); |
18 void IAccessibleStateToStringVector(int32 ia_state, | 18 void IAccessibleStateToStringVector(int32 ia_state, |
19 std::vector<string16>* result); | 19 std::vector<string16>* result); |
20 string16 IAccessible2StateToString(int32 ia2_state); | 20 string16 IAccessible2StateToString(int32 ia2_state); |
21 void IAccessible2StateToStringVector(int32 ia_state, | 21 void IAccessible2StateToStringVector(int32 ia_state, |
22 std::vector<string16>* result); | 22 std::vector<string16>* result); |
23 | 23 |
24 } // namespace content | 24 } // namespace content |
25 | 25 |
26 #endif // CONTENT_PUBLIC_TEST_ACCESSIBILITY_TEST_UTILS_WIN_H_ | 26 #endif // CONTENT_PUBLIC_TEST_ACCESSIBILITY_TEST_UTILS_WIN_H_ |
OLD | NEW |