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

Unified Diff: Source/WebCore/dom/Element.idl

Issue 14296003: Remove TOUCH_EVENTS and TOUCH_EVENT_TRACKING compile-time flags. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 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: Source/WebCore/dom/Element.idl
diff --git a/Source/WebCore/dom/Element.idl b/Source/WebCore/dom/Element.idl
index 3c6ee82a07fdf63db094e70b181c76e1baeaf691..f8994bed6ad4ce67281954c6e2127282a0738885 100644
--- a/Source/WebCore/dom/Element.idl
+++ b/Source/WebCore/dom/Element.idl
@@ -199,10 +199,10 @@
[NotEnumerable, PerWorldBindings] attribute EventListener onreset;
[NotEnumerable, PerWorldBindings] attribute EventListener onsearch;
[NotEnumerable, PerWorldBindings] attribute EventListener onselectstart;
- [NotEnumerable,Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch, PerWorldBindings] attribute EventListener ontouchstart;
- [NotEnumerable,Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch, PerWorldBindings] attribute EventListener ontouchmove;
- [NotEnumerable,Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch, PerWorldBindings] attribute EventListener ontouchend;
- [NotEnumerable,Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch, PerWorldBindings] attribute EventListener ontouchcancel;
+ [NotEnumerable,EnabledAtRuntime=touch, PerWorldBindings] attribute EventListener ontouchstart;
eseidel 2013/04/16 19:31:15 Missing a space.
+ [NotEnumerable,EnabledAtRuntime=touch, PerWorldBindings] attribute EventListener ontouchmove;
+ [NotEnumerable,EnabledAtRuntime=touch, PerWorldBindings] attribute EventListener ontouchend;
+ [NotEnumerable,EnabledAtRuntime=touch, PerWorldBindings] attribute EventListener ontouchcancel;
[NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreenchange;
[NotEnumerable, PerWorldBindings] attribute EventListener onwebkitfullscreenerror;
};

Powered by Google App Engine
This is Rietveld 408576698