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

Unified Diff: Source/WebCore/page/DOMWindow.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/page/DOMWindow.idl
diff --git a/Source/WebCore/page/DOMWindow.idl b/Source/WebCore/page/DOMWindow.idl
index a23671453b99aefca0329ce6a851c4959bd9f488..7dc984fafc67772300bdd510bfb0297c6f1ef9ce 100644
--- a/Source/WebCore/page/DOMWindow.idl
+++ b/Source/WebCore/page/DOMWindow.idl
@@ -268,10 +268,10 @@
#if defined(ENABLE_ORIENTATION_EVENTS) && ENABLE_ORIENTATION_EVENTS
attribute EventListener onorientationchange;
#endif
- [Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch] attribute EventListener ontouchstart;
- [Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch] attribute EventListener ontouchmove;
- [Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch] attribute EventListener ontouchend;
- [Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch] attribute EventListener ontouchcancel;
+ [EnabledAtRuntime=touch] attribute EventListener ontouchstart;
+ [EnabledAtRuntime=touch] attribute EventListener ontouchmove;
+ [EnabledAtRuntime=touch] attribute EventListener ontouchend;
+ [EnabledAtRuntime=touch] attribute EventListener ontouchcancel;
[EnabledAtRuntime] attribute EventListener ondevicemotion;
[EnabledAtRuntime] attribute EventListener ondeviceorientation;
@@ -519,9 +519,9 @@
attribute XMLHttpRequestProgressEventConstructor XMLHttpRequestProgressEvent;
[EnabledAtRuntime] attribute DeviceMotionEventConstructor DeviceMotionEvent;
[EnabledAtRuntime] attribute DeviceOrientationEventConstructor DeviceOrientationEvent;
- [Conditional=TOUCH_EVENTS, EnabledAtRuntime=touch] attribute TouchConstructor Touch;
- [Conditional=TOUCH_EVENTS, EnabledAtRuntime=touch] attribute TouchEventConstructor TouchEvent;
- [Conditional=TOUCH_EVENTS, EnabledAtRuntime=touch] attribute TouchListConstructor TouchList;
+ [EnabledAtRuntime=touch] attribute TouchConstructor Touch;
+ [EnabledAtRuntime=touch] attribute TouchEventConstructor TouchEvent;
+ [EnabledAtRuntime=touch] attribute TouchListConstructor TouchList;
attribute StorageEventConstructor StorageEvent;
[Conditional=INPUT_SPEECH] attribute SpeechInputEventConstructor SpeechInputEvent;
[Conditional=WEBGL] attribute WebGLContextEventConstructor WebGLContextEvent;

Powered by Google App Engine
This is Rietveld 408576698