blob: 8bef1bdbac4d34d9416acbd971188830ec651db3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#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 "content/common/content_export.h"
#include "third_party/WebKit/public/web/WebInputEvent.h"
namespace content {
class CONTENT_EXPORT WebKeyboardEventBuilder {
public:
static blink::WebKeyboardEvent Build(HWND hwnd,
UINT message,
WPARAM wparam,
LPARAM lparam,
double time_stamp);
};
class CONTENT_EXPORT WebMouseEventBuilder {
public:
static blink::WebMouseEvent Build(HWND hwnd,
UINT message,
WPARAM wparam,
LPARAM lparam,
double time_stamp);
};
class CONTENT_EXPORT WebMouseWheelEventBuilder {
public:
static blink::WebMouseWheelEvent Build(HWND hwnd,
UINT message,
WPARAM wparam,
LPARAM lparam,
double time_stamp);
};
} // namespace content
#endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_WEB_INPUT_EVENT_BUILDERS_WIN_H_
|