Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Unified Diff: third_party/WebKit/Source/core/events/InputEvent.h

Issue 2216593002: Drop document.createEvent support for things still behind a flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@createEvent
Patch Set: fix LayoutTests Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/events/InputEvent.h
diff --git a/third_party/WebKit/Source/core/events/InputEvent.h b/third_party/WebKit/Source/core/events/InputEvent.h
index a8d6c07401b60dff7bf8417b72364468472ac47a..2a002647a6df5dbdf4e7ee988e41b16efaa0aa3c 100644
--- a/third_party/WebKit/Source/core/events/InputEvent.h
+++ b/third_party/WebKit/Source/core/events/InputEvent.h
@@ -15,11 +15,6 @@ class InputEvent final : public UIEvent {
DEFINE_WRAPPERTYPEINFO();
public:
- static InputEvent* create()
- {
- return new InputEvent;
- }
-
static InputEvent* create(const AtomicString& type, const InputEventInit& initializer)
{
return new InputEvent(type, initializer);
@@ -110,7 +105,6 @@ public:
private:
friend class InputEventDispatchMediator;
- InputEvent();
InputEvent(const AtomicString&, const InputEventInit&);
InputType m_inputType;
« no previous file with comments | « third_party/WebKit/Source/core/events/AnimationPlayerEvent.cpp ('k') | third_party/WebKit/Source/core/events/InputEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698