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

Unified Diff: ui/metro_viewer/metro_viewer_messages.h

Issue 1267483003: Combine the WM_CHAR with WM_KEY* for key event flow. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
Index: ui/metro_viewer/metro_viewer_messages.h
diff --git a/ui/metro_viewer/metro_viewer_messages.h b/ui/metro_viewer/metro_viewer_messages.h
index ad7690cceda3a06746c2cafe4cd889efbec3d66a..97b1b41d83391be58d6a3d3642279bd67d34a9a1 100644
--- a/ui/metro_viewer/metro_viewer_messages.h
+++ b/ui/metro_viewer/metro_viewer_messages.h
@@ -61,6 +61,11 @@ IPC_MESSAGE_CONTROL4(MetroViewerHostMsg_Character,
uint32, /* repeat count */
uint32, /* scan code */
uint32 /* key state */);
+IPC_MESSAGE_CONTROL4(MetroViewerHostMsg_CharacterForNextKeyEvent,
+ uint32, /* virtual key */
+ uint32, /* repeat count */
+ uint32, /* scan code */
+ uint32 /* key state */);
// Informs the browser that the Metro window has been activated.
IPC_MESSAGE_CONTROL1(MetroViewerHostMsg_WindowActivated,
bool /* Whether the window should be repainted */);

Powered by Google App Engine
This is Rietveld 408576698