#ifndef COMPONENTS_INPUT_NATIVE_WEB_KEYBOARD_EVENT_H_
#define COMPONENTS_INPUT_NATIVE_WEB_KEYBOARD_EVENT_H_
#include "base/time/time.h"
#include "build/build_config.h"
#include "base/component_export.h"
#include "third_party/blink/public/common/input/web_keyboard_event.h"
#include "ui/gfx/native_widget_types.h"
#if BUILDFLAG(IS_ANDROID)
#include "base/android/scoped_java_ref.h"
#endif
namespace ui {
class KeyEvent;
}
namespace input {
struct COMPONENT_EXPORT(INPUT) NativeWebKeyboardEvent :
public blink::WebKeyboardEvent { … };
}
#endif