#ifndef CONTENT_BROWSER_RENDERER_HOST_INPUT_WEB_INPUT_EVENT_BUILDERS_WIN_H_
#define CONTENT_BROWSER_RENDERER_HOST_INPUT_WEB_INPUT_EVENT_BUILDERS_WIN_H_
#include <windows.h>
#include "third_party/WebKit/public/web/WebInputEvent.h"
namespace content {
class WebKeyboardEventBuilder {
public:
static blink::WebKeyboardEvent Build(HWND hwnd, UINT message,
WPARAM wparam, LPARAM lparam);
};
class WebMouseEventBuilder {
public:
static blink::WebMouseEvent Build(HWND hwnd, UINT message,
WPARAM wparam, LPARAM lparam);
};
class WebMouseWheelEventBuilder {
public:
static blink::WebMouseWheelEvent Build(HWND hwnd, UINT message,
WPARAM wparam, LPARAM lparam);
};
}
#endif