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

Unified Diff: third_party/WebKit/Source/core/events/PointerEvent.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/PointerEvent.h
diff --git a/third_party/WebKit/Source/core/events/PointerEvent.h b/third_party/WebKit/Source/core/events/PointerEvent.h
index 2ca02ba65d69fb9cc6c4c497f4ef6547e7275341..4f943c8a1825c5d36f6ce936c26f20f564c01214 100644
--- a/third_party/WebKit/Source/core/events/PointerEvent.h
+++ b/third_party/WebKit/Source/core/events/PointerEvent.h
@@ -15,11 +15,6 @@ class PointerEvent final : public MouseEvent {
DEFINE_WRAPPERTYPEINFO();
public:
- static PointerEvent* create()
- {
- return new PointerEvent;
- }
-
static PointerEvent* create(const AtomicString& type, const PointerEventInit& initializer)
{
return new PointerEvent(type, initializer);
@@ -43,7 +38,6 @@ public:
DECLARE_VIRTUAL_TRACE();
private:
- PointerEvent();
PointerEvent(const AtomicString&, const PointerEventInit&);
int m_pointerId;
« no previous file with comments | « third_party/WebKit/Source/core/events/InputEvent.cpp ('k') | third_party/WebKit/Source/core/events/PointerEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698