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

Side by Side Diff: Source/core/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: rebase. 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
« no previous file with comments | « Source/core/page/DOMWindow.cpp ('k') | Source/core/page/EventHandler.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after
511 attribute ProgressEventConstructor ProgressEvent; 511 attribute ProgressEventConstructor ProgressEvent;
512 attribute TextEventConstructor TextEvent; 512 attribute TextEventConstructor TextEvent;
513 attribute TransitionEventConstructor TransitionEvent; 513 attribute TransitionEventConstructor TransitionEvent;
514 attribute UIEventConstructor UIEvent; 514 attribute UIEventConstructor UIEvent;
515 attribute AnimationEventConstructor WebKitAnimationEvent; 515 attribute AnimationEventConstructor WebKitAnimationEvent;
516 attribute TransitionEventConstructor WebKitTransitionEvent; 516 attribute TransitionEventConstructor WebKitTransitionEvent;
517 attribute WheelEventConstructor WheelEvent; 517 attribute WheelEventConstructor WheelEvent;
518 attribute XMLHttpRequestProgressEventConstructor XMLHttpRequestProgressEvent ; 518 attribute XMLHttpRequestProgressEventConstructor XMLHttpRequestProgressEvent ;
519 [EnabledAtRuntime] attribute DeviceMotionEventConstructor DeviceMotionEvent; 519 [EnabledAtRuntime] attribute DeviceMotionEventConstructor DeviceMotionEvent;
520 [EnabledAtRuntime] attribute DeviceOrientationEventConstructor DeviceOrienta tionEvent; 520 [EnabledAtRuntime] attribute DeviceOrientationEventConstructor DeviceOrienta tionEvent;
521 [Conditional=TOUCH_EVENTS, EnabledAtRuntime=touch] attribute TouchConstructo r Touch; 521 [EnabledAtRuntime=touch] attribute TouchConstructor Touch;
522 [Conditional=TOUCH_EVENTS, EnabledAtRuntime=touch] attribute TouchEventConst ructor TouchEvent; 522 [EnabledAtRuntime=touch] attribute TouchEventConstructor TouchEvent;
523 [Conditional=TOUCH_EVENTS, EnabledAtRuntime=touch] attribute TouchListConstr uctor TouchList; 523 [EnabledAtRuntime=touch] attribute TouchListConstructor TouchList;
524 attribute StorageEventConstructor StorageEvent; 524 attribute StorageEventConstructor StorageEvent;
525 [Conditional=INPUT_SPEECH] attribute SpeechInputEventConstructor SpeechInput Event; 525 [Conditional=INPUT_SPEECH] attribute SpeechInputEventConstructor SpeechInput Event;
526 [Conditional=WEBGL] attribute WebGLContextEventConstructor WebGLContextEvent ; 526 [Conditional=WEBGL] attribute WebGLContextEventConstructor WebGLContextEvent ;
527 [EnabledAtRuntime=requestAutocomplete] attribute AutocompleteErrorEventConst ructor AutocompleteErrorEvent; 527 [EnabledAtRuntime=requestAutocomplete] attribute AutocompleteErrorEventConst ructor AutocompleteErrorEvent;
528 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] attribute Secur ityPolicyViolationEventConstructor SecurityPolicyViolationEvent; 528 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] attribute Secur ityPolicyViolationEventConstructor SecurityPolicyViolationEvent;
529 529
530 attribute EventExceptionConstructor EventException; 530 attribute EventExceptionConstructor EventException;
531 531
532 attribute WebKitCSSKeyframeRuleConstructor WebKitCSSKeyframeRule; 532 attribute WebKitCSSKeyframeRuleConstructor WebKitCSSKeyframeRule;
533 attribute WebKitCSSKeyframesRuleConstructor WebKitCSSKeyframesRule; 533 attribute WebKitCSSKeyframesRuleConstructor WebKitCSSKeyframesRule;
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after
752 attribute MutationRecordConstructor MutationRecord; 752 attribute MutationRecordConstructor MutationRecord;
753 753
754 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS ource; 754 [EnabledAtRuntime=mediaSource] attribute MediaSourceConstructor WebKitMediaS ource;
755 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc eBuffer; 755 [EnabledAtRuntime=mediaSource] attribute SourceBufferConstructor WebKitSourc eBuffer;
756 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS ourceBufferList; 756 [EnabledAtRuntime=mediaSource] attribute SourceBufferListConstructor WebKitS ourceBufferList;
757 757
758 // window.toString() requires special handling in V8 758 // window.toString() requires special handling in V8
759 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString(); 759 [DoNotCheckSignature, DoNotCheckSecurity, Custom, NotEnumerable] DOMString t oString();
760 }; 760 };
761 761
OLDNEW
« no previous file with comments | « Source/core/page/DOMWindow.cpp ('k') | Source/core/page/EventHandler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698