| Index: third_party/WebKit/Source/modules/gamepad/GamepadEvent.h
|
| diff --git a/third_party/WebKit/Source/modules/gamepad/GamepadEvent.h b/third_party/WebKit/Source/modules/gamepad/GamepadEvent.h
|
| index 89a7e17f8347c462715934dfb32b0abdcdc6521e..0787a7372ac78339d41afcb445f5340fe23dff60 100644
|
| --- a/third_party/WebKit/Source/modules/gamepad/GamepadEvent.h
|
| +++ b/third_party/WebKit/Source/modules/gamepad/GamepadEvent.h
|
| @@ -14,10 +14,6 @@ namespace blink {
|
| class GamepadEvent final : public Event {
|
| DEFINE_WRAPPERTYPEINFO();
|
| public:
|
| - static GamepadEvent* create()
|
| - {
|
| - return new GamepadEvent;
|
| - }
|
| static GamepadEvent* create(const AtomicString& type, bool canBubble, bool cancelable, Gamepad* gamepad)
|
| {
|
| return new GamepadEvent(type, canBubble, cancelable, gamepad);
|
| @@ -35,7 +31,6 @@ public:
|
| DECLARE_VIRTUAL_TRACE();
|
|
|
| private:
|
| - GamepadEvent();
|
| GamepadEvent(const AtomicString& type, bool canBubble, bool cancelable, Gamepad*);
|
| GamepadEvent(const AtomicString&, const GamepadEventInit&);
|
|
|
|
|