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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
3 * Copyright (C) 2011 Google Inc. All rights reserved. 3 * Copyright (C) 2011 Google Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 attribute EventListener onreset; 261 attribute EventListener onreset;
262 attribute EventListener onsearch; 262 attribute EventListener onsearch;
263 attribute EventListener onwebkitanimationend; 263 attribute EventListener onwebkitanimationend;
264 attribute EventListener onwebkitanimationiteration; 264 attribute EventListener onwebkitanimationiteration;
265 attribute EventListener onwebkitanimationstart; 265 attribute EventListener onwebkitanimationstart;
266 attribute EventListener onwebkittransitionend; 266 attribute EventListener onwebkittransitionend;
267 attribute EventListener ontransitionend; 267 attribute EventListener ontransitionend;
268 #if defined(ENABLE_ORIENTATION_EVENTS) && ENABLE_ORIENTATION_EVENTS 268 #if defined(ENABLE_ORIENTATION_EVENTS) && ENABLE_ORIENTATION_EVENTS
269 attribute EventListener onorientationchange; 269 attribute EventListener onorientationchange;
270 #endif 270 #endif
271 [Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch] attribute EventListener on touchstart; 271 [EnabledAtRuntime=touch] attribute EventListener ontouchstart;
272 [Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch] attribute EventListener on touchmove; 272 [EnabledAtRuntime=touch] attribute EventListener ontouchmove;
273 [Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch] attribute EventListener on touchend; 273 [EnabledAtRuntime=touch] attribute EventListener ontouchend;
274 [Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch] attribute EventListener on touchcancel; 274 [EnabledAtRuntime=touch] attribute EventListener ontouchcancel;
275 275
276 [EnabledAtRuntime] attribute EventListener ondevicemotion; 276 [EnabledAtRuntime] attribute EventListener ondevicemotion;
277 [EnabledAtRuntime] attribute EventListener ondeviceorientation; 277 [EnabledAtRuntime] attribute EventListener ondeviceorientation;
278 278
279 // EventTarget interface 279 // EventTarget interface
280 [Custom] void addEventListener(DOMString type, 280 [Custom] void addEventListener(DOMString type,
281 EventListener listener, 281 EventListener listener,
282 optional boolean useCapture); 282 optional boolean useCapture);
283 [Custom] void removeEventListener(DOMString type, 283 [Custom] void removeEventListener(DOMString type,
284 EventListener listener, 284 EventListener listener,
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 attribute ProgressEventConstructor ProgressEvent; 512 attribute ProgressEventConstructor ProgressEvent;
513 attribute TextEventConstructor TextEvent; 513 attribute TextEventConstructor TextEvent;
514 attribute TransitionEventConstructor TransitionEvent; 514 attribute TransitionEventConstructor TransitionEvent;
515 attribute UIEventConstructor UIEvent; 515 attribute UIEventConstructor UIEvent;
516 attribute AnimationEventConstructor WebKitAnimationEvent; 516 attribute AnimationEventConstructor WebKitAnimationEvent;
517 attribute TransitionEventConstructor WebKitTransitionEvent; 517 attribute TransitionEventConstructor WebKitTransitionEvent;
518 attribute WheelEventConstructor WheelEvent; 518 attribute WheelEventConstructor WheelEvent;
519 attribute XMLHttpRequestProgressEventConstructor XMLHttpRequestProgressEvent ; 519 attribute XMLHttpRequestProgressEventConstructor XMLHttpRequestProgressEvent ;
520 [EnabledAtRuntime] attribute DeviceMotionEventConstructor DeviceMotionEvent; 520 [EnabledAtRuntime] attribute DeviceMotionEventConstructor DeviceMotionEvent;
521 [EnabledAtRuntime] attribute DeviceOrientationEventConstructor DeviceOrienta tionEvent; 521 [EnabledAtRuntime] attribute DeviceOrientationEventConstructor DeviceOrienta tionEvent;
522 [Conditional=TOUCH_EVENTS, EnabledAtRuntime=touch] attribute TouchConstructo r Touch; 522 [EnabledAtRuntime=touch] attribute TouchConstructor Touch;
523 [Conditional=TOUCH_EVENTS, EnabledAtRuntime=touch] attribute TouchEventConst ructor TouchEvent; 523 [EnabledAtRuntime=touch] attribute TouchEventConstructor TouchEvent;
524 [Conditional=TOUCH_EVENTS, EnabledAtRuntime=touch] attribute TouchListConstr uctor TouchList; 524 [EnabledAtRuntime=touch] attribute TouchListConstructor TouchList;
525 attribute StorageEventConstructor StorageEvent; 525 attribute StorageEventConstructor StorageEvent;
526 [Conditional=INPUT_SPEECH] attribute SpeechInputEventConstructor SpeechInput Event; 526 [Conditional=INPUT_SPEECH] attribute SpeechInputEventConstructor SpeechInput Event;
527 [Conditional=WEBGL] attribute WebGLContextEventConstructor WebGLContextEvent ; 527 [Conditional=WEBGL] attribute WebGLContextEventConstructor WebGLContextEvent ;
528 [EnabledAtRuntime=requestAutocomplete] attribute AutocompleteErrorEventConst ructor AutocompleteErrorEvent; 528 [EnabledAtRuntime=requestAutocomplete] attribute AutocompleteErrorEventConst ructor AutocompleteErrorEvent;
529 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] attribute Secur ityPolicyViolationEventConstructor SecurityPolicyViolationEvent; 529 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] attribute Secur ityPolicyViolationEventConstructor SecurityPolicyViolationEvent;
530 530
531 attribute EventExceptionConstructor EventException; 531 attribute EventExceptionConstructor EventException;
532 532
533 attribute WebKitCSSKeyframeRuleConstructor WebKitCSSKeyframeRule; 533 attribute WebKitCSSKeyframeRuleConstructor WebKitCSSKeyframeRule;
534 attribute WebKitCSSKeyframesRuleConstructor WebKitCSSKeyframesRule; 534 attribute WebKitCSSKeyframesRuleConstructor WebKitCSSKeyframesRule;
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
753 attribute MutationRecordConstructor MutationRecord; 753 attribute MutationRecordConstructor MutationRecord;
754 754
755 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS ource; 755 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS ource;
756 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc eBuffer; 756 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc eBuffer;
757 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS ourceBufferList; 757 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS ourceBufferList;
758 758
759 // window.toString() requires special handling in V8 759 // window.toString() requires special handling in V8
760 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString(); 760 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString();
761 }; 761 };
762 762
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698