#ifndef CONTENT_BROWSER_DEVTOOLS_PROTOCOL_NATIVE_INPUT_EVENT_BUILDER_H_
#define CONTENT_BROWSER_DEVTOOLS_PROTOCOL_NATIVE_INPUT_EVENT_BUILDER_H_
#include "build/build_config.h"
#include "components/input/native_web_keyboard_event.h"
namespace content::protocol {
class NativeInputEventBuilder {
public:
#if BUILDFLAG(IS_APPLE)
static gfx::NativeEvent CreateEvent(
const input::NativeWebKeyboardEvent& event);
#else
static gfx::NativeEvent CreateEvent(
const input::NativeWebKeyboardEvent& event) {
return nullptr;
}
#endif
};
}
#endif