| Index: third_party/WebKit/Source/modules/device_light/DeviceLightEvent.h
|
| diff --git a/third_party/WebKit/Source/modules/device_light/DeviceLightEvent.h b/third_party/WebKit/Source/modules/device_light/DeviceLightEvent.h
|
| index 3713f99bd9bda2da26049d0289f1e6bf7455c764..d8d1a38c55b6138eabefa549b367e1c67ccaf0fb 100644
|
| --- a/third_party/WebKit/Source/modules/device_light/DeviceLightEvent.h
|
| +++ b/third_party/WebKit/Source/modules/device_light/DeviceLightEvent.h
|
| @@ -16,10 +16,6 @@ class DeviceLightEvent final : public Event {
|
| public:
|
| ~DeviceLightEvent() override;
|
|
|
| - static DeviceLightEvent* create()
|
| - {
|
| - return new DeviceLightEvent;
|
| - }
|
| static DeviceLightEvent* create(const AtomicString& eventType, double value)
|
| {
|
| return new DeviceLightEvent(eventType, value);
|
| @@ -34,7 +30,6 @@ public:
|
| const AtomicString& interfaceName() const override;
|
|
|
| private:
|
| - DeviceLightEvent();
|
| DeviceLightEvent(const AtomicString& eventType, double value);
|
| DeviceLightEvent(const AtomicString& eventType, const DeviceLightEventInit& initializer);
|
|
|
|
|