| Index: third_party/WebKit/public/platform/WebTouchPoint.h
|
| diff --git a/third_party/WebKit/public/platform/WebTouchPoint.h b/third_party/WebKit/public/platform/WebTouchPoint.h
|
| index e204cd7d2d4565c1b7a113f8f1763f2fccbbfe57..a4fdc06d6257028abfd3ddab325d88dcb1dbc513 100644
|
| --- a/third_party/WebKit/public/platform/WebTouchPoint.h
|
| +++ b/third_party/WebKit/public/platform/WebTouchPoint.h
|
| @@ -41,8 +41,10 @@ namespace blink {
|
| // crbug.com/508283
|
| class WebTouchPoint : public WebPointerProperties {
|
| public:
|
| - WebTouchPoint()
|
| - : WebPointerProperties(0),
|
| + WebTouchPoint() : WebTouchPoint(WebPointerProperties(0)) {}
|
| +
|
| + WebTouchPoint(WebPointerProperties web_pointer_properties)
|
| + : WebPointerProperties(web_pointer_properties),
|
| state(kStateUndefined),
|
| radius_x(0),
|
| radius_y(0),
|
|
|