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

Side by Side Diff: content/public/test/accessibility_test_utils_win.h

Issue 10662003: Allow filters in accessibility tests to specify which attributes to check. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Work around missing webkit strings in content_browsertests for now Created 8 years, 4 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
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_
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>
David Tseng 2012/07/31 17:04:17 nit: new line above.
9
8 #include "base/basictypes.h" 10 #include "base/basictypes.h"
9 #include "base/string16.h" 11 #include "base/string16.h"
10 12
11 string16 IAccessibleRoleToString(int32 ia_role); 13 string16 IAccessibleRoleToString(int32 ia_role);
12 string16 IAccessible2RoleToString(int32 ia_role); 14 string16 IAccessible2RoleToString(int32 ia_role);
13 string16 IAccessibleStateToString(int32 ia_state); 15 string16 IAccessibleStateToString(int32 ia_state);
16 void IAccessibleStateToStringVector(int32 ia_state,
17 std::vector<string16>* result);
14 string16 IAccessible2StateToString(int32 ia2_state); 18 string16 IAccessible2StateToString(int32 ia2_state);
19 void IAccessible2StateToStringVector(int32 ia_state,
20 std::vector<string16>* result);
15 21
16 #endif // CONTENT_PUBLIC_TEST_ACCESSIBILITY_TEST_UTILS_WIN_H_ 22 #endif // CONTENT_PUBLIC_TEST_ACCESSIBILITY_TEST_UTILS_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698