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

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

Issue 2182183003: Remove |TouchEvent.initTouchEvent()| in M54 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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/TouchEvent.h
diff --git a/third_party/WebKit/Source/core/events/TouchEvent.h b/third_party/WebKit/Source/core/events/TouchEvent.h
index 5b2fff25eb4c491448cf2aaa6edf6d5e19b1c1f1..3fa6aab57953ad528634f14de64b3d7d9647d0f0 100644
--- a/third_party/WebKit/Source/core/events/TouchEvent.h
+++ b/third_party/WebKit/Source/core/events/TouchEvent.h
@@ -60,12 +60,6 @@ public:
return new TouchEvent(type, initializer);
}
- void initTouchEvent(ScriptState*, TouchList* touches, TouchList* targetTouches,
- TouchList* changedTouches, const AtomicString& type,
- AbstractView*,
- int, int, int, int, // unused useless members of web exposed API
- bool ctrlKey, bool altKey, bool shiftKey, bool metaKey);
-
TouchList* touches() const { return m_touches.get(); }
TouchList* targetTouches() const { return m_targetTouches.get(); }
TouchList* changedTouches() const { return m_changedTouches.get(); }

Powered by Google App Engine
This is Rietveld 408576698