| Index: chrome/browser/android/vr_shell/vr_input_manager.h
|
| diff --git a/chrome/browser/android/vr_shell/vr_input_manager.h b/chrome/browser/android/vr_shell/vr_input_manager.h
|
| index f80b3318915fca4ffa37eebd8bd675e6348d264f..198bed729b383ffc501b62d4812b637381a7a84a 100644
|
| --- a/chrome/browser/android/vr_shell/vr_input_manager.h
|
| +++ b/chrome/browser/android/vr_shell/vr_input_manager.h
|
| @@ -10,6 +10,7 @@
|
| #include "third_party/WebKit/public/platform/WebGestureEvent.h"
|
| #include "third_party/WebKit/public/platform/WebInputEvent.h"
|
| #include "third_party/WebKit/public/platform/WebMouseEvent.h"
|
| +#include "content/public/browser/native_web_keyboard_event.h"
|
|
|
| namespace content {
|
| class WebContents;
|
| @@ -25,11 +26,14 @@ class VrInputManager {
|
|
|
| base::WeakPtr<VrInputManager> GetWeakPtr();
|
| void ProcessUpdatedGesture(std::unique_ptr<blink::WebInputEvent> event);
|
| + void ProcessKeyboardEvent(int char_value, int modifiers);
|
|
|
| private:
|
| void SendGesture(const blink::WebGestureEvent& gesture);
|
| void ForwardGestureEvent(const blink::WebGestureEvent& gesture);
|
| void ForwardMouseEvent(const blink::WebMouseEvent& mouse_event);
|
| + void ForwardKeyboardEvent(
|
| + const content::NativeWebKeyboardEvent& keyboard_event);
|
|
|
| content::WebContents* web_contents_;
|
|
|
|
|