Index: chrome/common/native_web_keyboard_event_linux.cc |
=================================================================== |
--- chrome/common/native_web_keyboard_event_linux.cc (revision 18994) |
+++ 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); |
Property changes on: chrome\common\native_web_keyboard_event_linux.cc |
___________________________________________________________________ |
Added: svn:eol-style |
+ LF |