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

Unified Diff: chrome/test/interactive_ui/keyboard_access_uitest.cc

Issue 2892009: chromeos: Fix keyboard_access_uitest. (Closed)
Patch Set: Created 10 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/interactive_ui/keyboard_access_uitest.cc
diff --git a/chrome/test/interactive_ui/keyboard_access_uitest.cc b/chrome/test/interactive_ui/keyboard_access_uitest.cc
index be221f65b1056bd1e3dc931e9fe29d73ca5fef52..29a498e49701d63da255fd25da1e9610830e8c34 100644
--- a/chrome/test/interactive_ui/keyboard_access_uitest.cc
+++ b/chrome/test/interactive_ui/keyboard_access_uitest.cc
@@ -59,10 +59,14 @@ void KeyboardAccessTest::TestMenuKeyboardAccess(bool alternate_key_sequence) {
int original_view_id = -1;
ASSERT_TRUE(window->GetFocusedViewID(&original_view_id));
- if (alternate_key_sequence)
- ASSERT_TRUE(window->SimulateOSKeyPress(base::VKEY_MENU, 0));
- else
- ASSERT_TRUE(window->SimulateOSKeyPress(base::VKEY_F10, 0));
+ base::KeyboardCode menu_key =
+ alternate_key_sequence ? base::VKEY_MENU : base::VKEY_F10;
+#if defined(OS_CHROMEOS)
+ // Chrome OS has different function key accelerators, so we always use the
+ // menu key there.
+ menu_key = base::VKEY_MENU;
+#endif
+ ASSERT_TRUE(window->SimulateOSKeyPress(menu_key, 0));
int new_view_id = -1;
ASSERT_TRUE(window->WaitForFocusedViewIDToChange(
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698