| Index: chrome/common/native_web_keyboard_event_linux.cc | 
| =================================================================== | 
| --- chrome/common/native_web_keyboard_event_linux.cc	(revision 19224) | 
| +++ chrome/common/native_web_keyboard_event_linux.cc	(working copy) | 
| @@ -38,6 +38,13 @@ | 
| CopyEventTo(native_event, &os_event); | 
| } | 
|  | 
| +NativeWebKeyboardEvent::NativeWebKeyboardEvent(wchar_t character, | 
| +                                               double time_stamp_seconds) | 
| +    : WebKeyboardEvent(WebInputEventFactory::keyboardEvent(character, | 
| +                                                           time_stamp_seconds)), | 
| +      os_event(NULL) { | 
| +} | 
| + | 
| NativeWebKeyboardEvent::NativeWebKeyboardEvent( | 
| const NativeWebKeyboardEvent& other) : WebKeyboardEvent(other) { | 
| CopyEventTo(other.os_event, &os_event); | 
|  |