| Index: third_party/WebKit/public/platform/WebPointerProperties.h
|
| diff --git a/third_party/WebKit/public/platform/WebPointerProperties.h b/third_party/WebKit/public/platform/WebPointerProperties.h
|
| index 0c0e13e93e3e0ed129b53ac9af6d98c4af0f3ba3..dd82fcb4507444d7a856faa7e9d980b3d21ae6b0 100644
|
| --- a/third_party/WebKit/public/platform/WebPointerProperties.h
|
| +++ b/third_party/WebKit/public/platform/WebPointerProperties.h
|
| @@ -31,7 +31,20 @@ public:
|
| NoButton = -1,
|
| Left,
|
| Middle,
|
| - Right
|
| + Right,
|
| + X1,
|
| + X2,
|
| + Eraser
|
| + };
|
| +
|
| + enum class Buttons : unsigned {
|
| + NoButton = 0,
|
| + Left = 1 << 0,
|
| + Right = 1 << 1,
|
| + Middle = 1 << 2,
|
| + X1 = 1 << 3,
|
| + X2 = 1 << 4,
|
| + Eraser = 1 << 5
|
| };
|
|
|
| enum class PointerType {
|
|
|