chromium/components/input/native_web_keyboard_event.h

// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 {

// Owns a platform specific event; used to pass own and pass event through
// platform independent code.
struct COMPONENT_EXPORT(INPUT) NativeWebKeyboardEvent :
    public blink::WebKeyboardEvent {};

}  // namespace input

#endif  // COMPONENTS_INPUT_NATIVE_WEB_KEYBOARD_EVENT_H_