| Index: content/public/browser/native_web_keyboard_event.h
|
| diff --git a/content/public/browser/native_web_keyboard_event.h b/content/public/browser/native_web_keyboard_event.h
|
| index 5f77ca8d6f366759a8cebbbb09179e8ed09feb30..9f29788119e2d6868631f4864358347b1da38896 100644
|
| --- a/content/public/browser/native_web_keyboard_event.h
|
| +++ b/content/public/browser/native_web_keyboard_event.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include "base/compiler_specific.h"
|
| #include "base/strings/string16.h"
|
| +#include "base/time/time.h"
|
| #include "build/build_config.h"
|
| #include "content/common/content_export.h"
|
| #include "third_party/WebKit/public/platform/WebInputEvent.h"
|
| @@ -26,7 +27,12 @@ namespace content {
|
| // platform independent code.
|
| struct CONTENT_EXPORT NativeWebKeyboardEvent :
|
| NON_EXPORTED_BASE(public blink::WebKeyboardEvent) {
|
| - NativeWebKeyboardEvent();
|
| + NativeWebKeyboardEvent(blink::WebInputEvent::Type type,
|
| + int modifiers,
|
| + base::TimeTicks timestamp);
|
| + NativeWebKeyboardEvent(blink::WebInputEvent::Type type,
|
| + int modifiers,
|
| + double timestampSeconds);
|
|
|
| explicit NativeWebKeyboardEvent(gfx::NativeEvent native_event);
|
| #if defined(OS_ANDROID)
|
|
|