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

Side by Side Diff: Source/core/dom/Document.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/dom/Document.cpp ('k') | Source/core/dom/Element.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, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2011 Apple Inc. All rights reserved.
3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org> 3 * Copyright (C) 2006, 2007 Samuel Weinig <sam@webkit.org>
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 236 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 [NotEnumerable] attribute EventListener onbeforecut; 247 [NotEnumerable] attribute EventListener onbeforecut;
248 [NotEnumerable] attribute EventListener oncut; 248 [NotEnumerable] attribute EventListener oncut;
249 [NotEnumerable] attribute EventListener onbeforecopy; 249 [NotEnumerable] attribute EventListener onbeforecopy;
250 [NotEnumerable] attribute EventListener oncopy; 250 [NotEnumerable] attribute EventListener oncopy;
251 [NotEnumerable] attribute EventListener onbeforepaste; 251 [NotEnumerable] attribute EventListener onbeforepaste;
252 [NotEnumerable] attribute EventListener onpaste; 252 [NotEnumerable] attribute EventListener onpaste;
253 [NotEnumerable] attribute EventListener onreset; 253 [NotEnumerable] attribute EventListener onreset;
254 [NotEnumerable] attribute EventListener onsearch; 254 [NotEnumerable] attribute EventListener onsearch;
255 [NotEnumerable] attribute EventListener onselectstart; 255 [NotEnumerable] attribute EventListener onselectstart;
256 [NotEnumerable] attribute EventListener onselectionchange; 256 [NotEnumerable] attribute EventListener onselectionchange;
257 [NotEnumerable,Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch] attribute Ev entListener ontouchstart; 257 [NotEnumerable,EnabledAtRuntime=touch] attribute EventListener ontouchstart;
258 [NotEnumerable,Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch] attribute Ev entListener ontouchmove; 258 [NotEnumerable,EnabledAtRuntime=touch] attribute EventListener ontouchmove;
259 [NotEnumerable,Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch] attribute Ev entListener ontouchend; 259 [NotEnumerable,EnabledAtRuntime=touch] attribute EventListener ontouchend;
260 [NotEnumerable,Conditional=TOUCH_EVENTS,EnabledAtRuntime=touch] attribute Ev entListener ontouchcancel; 260 [NotEnumerable,EnabledAtRuntime=touch] attribute EventListener ontouchcancel ;
261 [NotEnumerable] attribute EventListener onwebkitfullscreenchange; 261 [NotEnumerable] attribute EventListener onwebkitfullscreenchange;
262 [NotEnumerable] attribute EventListener onwebkitfullscreenerror; 262 [NotEnumerable] attribute EventListener onwebkitfullscreenerror;
263 [NotEnumerable] attribute EventListener onwebkitpointerlockchange; 263 [NotEnumerable] attribute EventListener onwebkitpointerlockchange;
264 [NotEnumerable] attribute EventListener onwebkitpointerlockerror; 264 [NotEnumerable] attribute EventListener onwebkitpointerlockerror;
265 [NotEnumerable, EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] attribute EventListener onsecuritypolicyviolation; 265 [NotEnumerable, EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] attribute EventListener onsecuritypolicyviolation;
266 266
267 #if defined(ENABLE_TOUCH_EVENTS) && ENABLE_TOUCH_EVENTS
268 [ReturnNewObject, EnabledAtRuntime=touch, RaisesException] Touch createTouch ([Default=Undefined] optional DOMWindow window, 267 [ReturnNewObject, EnabledAtRuntime=touch, RaisesException] Touch createTouch ([Default=Undefined] optional DOMWindow window,
269 [Default=Undefined] optiona l EventTarget target, 268 [Default=Undefined] optiona l EventTarget target,
270 [Default=Undefined] optiona l long identifier, 269 [Default=Undefined] optiona l long identifier,
271 [Default=Undefined] optiona l long pageX, 270 [Default=Undefined] optiona l long pageX,
272 [Default=Undefined] optiona l long pageY, 271 [Default=Undefined] optiona l long pageY,
273 [Default=Undefined] optiona l long screenX, 272 [Default=Undefined] optiona l long screenX,
274 [Default=Undefined] optiona l long screenY, 273 [Default=Undefined] optiona l long screenY,
275 [Default=Undefined] optiona l long webkitRadiusX, 274 [Default=Undefined] optiona l long webkitRadiusX,
276 [Default=Undefined] optiona l long webkitRadiusY, 275 [Default=Undefined] optiona l long webkitRadiusY,
277 [Default=Undefined] optiona l float webkitRotationAngle, 276 [Default=Undefined] optiona l float webkitRotationAngle,
278 [Default=Undefined] optiona l float webkitForce); 277 [Default=Undefined] optiona l float webkitForce);
279 [ReturnNewObject, EnabledAtRuntime=touch, Custom, RaisesException] TouchList createTouchList(); 278 [ReturnNewObject, EnabledAtRuntime=touch, Custom, RaisesException] TouchList createTouchList();
280 #endif
281 279
282 #if defined(ENABLE_CUSTOM_ELEMENTS) && ENABLE_CUSTOM_ELEMENTS 280 #if defined(ENABLE_CUSTOM_ELEMENTS) && ENABLE_CUSTOM_ELEMENTS
283 [EnabledAtRuntime=customDOMElements, Conditional=CUSTOM_ELEMENTS, Implemente dAs=registerElement, CallWith=ScriptState, DeliverCustomElementCallbacks, Raises Exception] CustomElementConstructor webkitRegister(DOMString name, optional Dict ionary options); 281 [EnabledAtRuntime=customDOMElements, Conditional=CUSTOM_ELEMENTS, Implemente dAs=registerElement, CallWith=ScriptState, DeliverCustomElementCallbacks, Raises Exception] CustomElementConstructor webkitRegister(DOMString name, optional Dict ionary options);
284 [ReturnNewObject, DeliverCustomElementCallbacks, PerWorldBindings, RaisesExc eption] Element createElement(DOMString localName, [TreatNullAs=NullString] DOMS tring typeExtension); 282 [ReturnNewObject, DeliverCustomElementCallbacks, PerWorldBindings, RaisesExc eption] Element createElement(DOMString localName, [TreatNullAs=NullString] DOMS tring typeExtension);
285 [ReturnNewObject, DeliverCustomElementCallbacks, RaisesException] Element cr eateElementNS([TreatNullAs=NullString] DOMString namespaceURI, DOMString qualifi edName, 283 [ReturnNewObject, DeliverCustomElementCallbacks, RaisesException] Element cr eateElementNS([TreatNullAs=NullString] DOMString namespaceURI, DOMString qualifi edName,
286 [TreatNullAs=NullString] DOMString typeExtension); 284 [TreatNullAs=NullString] DOMString typeExtension);
287 #endif 285 #endif
288 286
289 // Page visibility API. 287 // Page visibility API.
290 readonly attribute DOMString webkitVisibilityState; 288 readonly attribute DOMString webkitVisibilityState;
291 readonly attribute boolean webkitHidden; 289 readonly attribute boolean webkitHidden;
292 290
293 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi le/tip/csp-specification.dev.html#script-interfaces 291 // Security Policy API: http://dvcs.w3.org/hg/content-security-policy/raw-fi le/tip/csp-specification.dev.html#script-interfaces
294 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] readonly attrib ute DOMSecurityPolicy securityPolicy; 292 [EnabledAtRuntime=experimentalContentSecurityPolicyFeatures] readonly attrib ute DOMSecurityPolicy securityPolicy;
295 293
296 }; 294 };
297 295
OLDNEW
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/dom/Element.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698