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

Unified 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, 5 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 side-by-side diff with in-line comments
Download patch
Index: content/public/test/accessibility_test_utils_win.h
diff --git a/content/public/test/accessibility_test_utils_win.h b/content/public/test/accessibility_test_utils_win.h
index bd3fe9e91499b82eef2228597c6efa471688c7d5..e1b9b8fd25ffc8d18c3ac10062af726cd228a9f6 100644
--- a/content/public/test/accessibility_test_utils_win.h
+++ b/content/public/test/accessibility_test_utils_win.h
@@ -5,12 +5,18 @@
#ifndef CONTENT_PUBLIC_TEST_ACCESSIBILITY_TEST_UTILS_WIN_H_
#define CONTENT_PUBLIC_TEST_ACCESSIBILITY_TEST_UTILS_WIN_H_
+#include <vector>
David Tseng 2012/07/31 17:04:17 nit: new line above.
+
#include "base/basictypes.h"
#include "base/string16.h"
string16 IAccessibleRoleToString(int32 ia_role);
string16 IAccessible2RoleToString(int32 ia_role);
string16 IAccessibleStateToString(int32 ia_state);
+void IAccessibleStateToStringVector(int32 ia_state,
+ std::vector<string16>* result);
string16 IAccessible2StateToString(int32 ia2_state);
+void IAccessible2StateToStringVector(int32 ia_state,
+ std::vector<string16>* result);
#endif // CONTENT_PUBLIC_TEST_ACCESSIBILITY_TEST_UTILS_WIN_H_

Powered by Google App Engine
This is Rietveld 408576698