| Index: ui/base/ui_base_switches.cc | 
| diff --git a/ui/base/ui_base_switches.cc b/ui/base/ui_base_switches.cc | 
| index dd9853668868004325f219a881226623309c4bdc..db9c27452eee0c78f9c2b3abc0f2127d4566a692 100644 | 
| --- a/ui/base/ui_base_switches.cc | 
| +++ b/ui/base/ui_base_switches.cc | 
| @@ -19,6 +19,14 @@ const char kDisableRemoteCoreAnimation[] = "disable-remote-core-animation"; | 
| const char kShowMacOverlayBorders[] = "show-mac-overlay-borders"; | 
| #endif | 
|  | 
| +#if defined(OS_WIN) | 
| +// Disables merging the key event (WM_KEY*) with the char event (WM_CHAR). | 
| +const char kDisableMergeKeyCharEvents[]     = "disable-merge-key-char-events"; | 
| + | 
| +// Enables merging the key event (WM_KEY*) with the char event (WM_CHAR). | 
| +const char kEnableMergeKeyCharEvents[]     = "enable-merge-key-char-events"; | 
| +#endif | 
| + | 
| // Disables use of DWM composition for top level windows. | 
| const char kDisableDwmComposition[] = "disable-dwm-composition"; | 
|  | 
|  |