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

Unified Diff: ui/base/test/ui_controls_internal_win.cc

Issue 526063002: Change VKEY_MENU to VKEY_LMENU in interactive ui tests key sequence sending. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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 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: ui/base/test/ui_controls_internal_win.cc
diff --git a/ui/base/test/ui_controls_internal_win.cc b/ui/base/test/ui_controls_internal_win.cc
index ebf4a6de943238f2765130cb1f9ddf2f6f2a78a6..059c820c707c3e3aa7d6f2399ee57604a023214c 100644
--- a/ui/base/test/ui_controls_internal_win.cc
+++ b/ui/base/test/ui_controls_internal_win.cc
@@ -215,7 +215,7 @@ bool SendKeyPressImpl(HWND window,
}
if (alt) {
- if (!FillKeyboardInput(ui::VKEY_MENU, &input[i], false))
+ if (!FillKeyboardInput(ui::VKEY_LMENU, &input[i], false))
return false;
i++;
}
@@ -229,7 +229,7 @@ bool SendKeyPressImpl(HWND window,
i++;
if (alt) {
- if (!FillKeyboardInput(ui::VKEY_MENU, &input[i], true))
+ if (!FillKeyboardInput(ui::VKEY_LMENU, &input[i], true))
return false;
i++;
}
« 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