Title: [199224] trunk/Source/WebCore
Revision
199224
Author
[email protected]
Date
2016-04-08 02:04:17 -0700 (Fri, 08 Apr 2016)

Log Message

Remove unneeded UsePointersEvenForNonNullableObjectArguments from event classes
https://bugs.webkit.org/show_bug.cgi?id=156396

Reviewed by Youenn Fablet.

* dom/CompositionEvent.idl:
* dom/KeyboardEvent.idl:
* dom/MouseEvent.idl:
* dom/MutationEvent.idl:
* dom/TextEvent.idl:
* dom/TouchEvent.idl:
* dom/UIEvent.idl:
* dom/WheelEvent.idl:
Removed UsePointersEvenForNonNullableObjectArguments, which was having no effect.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (199223 => 199224)


--- trunk/Source/WebCore/ChangeLog	2016-04-08 08:52:17 UTC (rev 199223)
+++ trunk/Source/WebCore/ChangeLog	2016-04-08 09:04:17 UTC (rev 199224)
@@ -1,3 +1,20 @@
+2016-04-08  Darin Adler  <[email protected]>
+
+        Remove unneeded UsePointersEvenForNonNullableObjectArguments from event classes
+        https://bugs.webkit.org/show_bug.cgi?id=156396
+
+        Reviewed by Youenn Fablet.
+
+        * dom/CompositionEvent.idl:
+        * dom/KeyboardEvent.idl:
+        * dom/MouseEvent.idl:
+        * dom/MutationEvent.idl:
+        * dom/TextEvent.idl:
+        * dom/TouchEvent.idl:
+        * dom/UIEvent.idl:
+        * dom/WheelEvent.idl:
+        Removed UsePointersEvenForNonNullableObjectArguments, which was having no effect.
+
 2016-04-08  Manuel Rego Casasnovas  <[email protected]>
 
         [css-grid] Fix positioned items with grid gaps

Modified: trunk/Source/WebCore/dom/CompositionEvent.idl (199223 => 199224)


--- trunk/Source/WebCore/dom/CompositionEvent.idl	2016-04-08 08:52:17 UTC (rev 199223)
+++ trunk/Source/WebCore/dom/CompositionEvent.idl	2016-04-08 09:04:17 UTC (rev 199224)
@@ -26,7 +26,6 @@
 [
     ConstructorConditional=DOM4_EVENTS_CONSTRUCTOR,
     ConstructorTemplate=Event,
-    UsePointersEvenForNonNullableObjectArguments,
 ] interface CompositionEvent : UIEvent {
 
     [InitializedByEventConstructor] readonly attribute DOMString data;

Modified: trunk/Source/WebCore/dom/KeyboardEvent.idl (199223 => 199224)


--- trunk/Source/WebCore/dom/KeyboardEvent.idl	2016-04-08 08:52:17 UTC (rev 199223)
+++ trunk/Source/WebCore/dom/KeyboardEvent.idl	2016-04-08 09:04:17 UTC (rev 199224)
@@ -21,7 +21,6 @@
 [
     ConstructorConditional=DOM4_EVENTS_CONSTRUCTOR,
     ConstructorTemplate=Event,
-    UsePointersEvenForNonNullableObjectArguments,
 ] interface KeyboardEvent : UIEvent {
 
 #if !defined(LANGUAGE_JAVASCRIPT) || !LANGUAGE_JAVASCRIPT

Modified: trunk/Source/WebCore/dom/MouseEvent.idl (199223 => 199224)


--- trunk/Source/WebCore/dom/MouseEvent.idl	2016-04-08 08:52:17 UTC (rev 199223)
+++ trunk/Source/WebCore/dom/MouseEvent.idl	2016-04-08 09:04:17 UTC (rev 199224)
@@ -20,7 +20,6 @@
 [
     ConstructorConditional=DOM4_EVENTS_CONSTRUCTOR,
     ConstructorTemplate=Event,
-    UsePointersEvenForNonNullableObjectArguments,
     DoNotCheckConstants,
 ] interface MouseEvent : UIEvent {
 #if defined(LANGUAGE_JAVASCRIPT) && LANGUAGE_JAVASCRIPT

Modified: trunk/Source/WebCore/dom/MutationEvent.idl (199223 => 199224)


--- trunk/Source/WebCore/dom/MutationEvent.idl	2016-04-08 08:52:17 UTC (rev 199223)
+++ trunk/Source/WebCore/dom/MutationEvent.idl	2016-04-08 09:04:17 UTC (rev 199224)
@@ -18,9 +18,7 @@
  */
 
 // Introduced in DOM Level 2:
-[
-    UsePointersEvenForNonNullableObjectArguments,
-] interface MutationEvent : Event {
+interface MutationEvent : Event {
 
     // attrChangeType
     const unsigned short MODIFICATION = 1;

Modified: trunk/Source/WebCore/dom/TextEvent.idl (199223 => 199224)


--- trunk/Source/WebCore/dom/TextEvent.idl	2016-04-08 08:52:17 UTC (rev 199223)
+++ trunk/Source/WebCore/dom/TextEvent.idl	2016-04-08 09:04:17 UTC (rev 199224)
@@ -24,9 +24,7 @@
  */
 
 // Introduced in DOM Level 3:
-[
-    UsePointersEvenForNonNullableObjectArguments,
-] interface TextEvent : UIEvent {
+interface TextEvent : UIEvent {
 
     readonly attribute DOMString data;
 

Modified: trunk/Source/WebCore/dom/TouchEvent.idl (199223 => 199224)


--- trunk/Source/WebCore/dom/TouchEvent.idl	2016-04-08 08:52:17 UTC (rev 199223)
+++ trunk/Source/WebCore/dom/TouchEvent.idl	2016-04-08 09:04:17 UTC (rev 199224)
@@ -25,7 +25,6 @@
 
 [
     Conditional=TOUCH_EVENTS,
-    UsePointersEvenForNonNullableObjectArguments,
 ] interface TouchEvent : UIEvent {
     readonly attribute TouchList touches;
     readonly attribute TouchList targetTouches;

Modified: trunk/Source/WebCore/dom/UIEvent.idl (199223 => 199224)


--- trunk/Source/WebCore/dom/UIEvent.idl	2016-04-08 08:52:17 UTC (rev 199223)
+++ trunk/Source/WebCore/dom/UIEvent.idl	2016-04-08 09:04:17 UTC (rev 199224)
@@ -20,7 +20,6 @@
 [
     ConstructorConditional=DOM4_EVENTS_CONSTRUCTOR,
     ConstructorTemplate=Event,
-    UsePointersEvenForNonNullableObjectArguments,
 ] interface UIEvent : Event {
     [InitializedByEventConstructor] readonly attribute DOMWindow view;
     [InitializedByEventConstructor] readonly attribute long detail;

Modified: trunk/Source/WebCore/dom/WheelEvent.idl (199223 => 199224)


--- trunk/Source/WebCore/dom/WheelEvent.idl	2016-04-08 08:52:17 UTC (rev 199223)
+++ trunk/Source/WebCore/dom/WheelEvent.idl	2016-04-08 09:04:17 UTC (rev 199224)
@@ -23,7 +23,6 @@
 [
     ConstructorConditional=DOM4_EVENTS_CONSTRUCTOR,
     ConstructorTemplate=Event,
-    UsePointersEvenForNonNullableObjectArguments,
 ] interface WheelEvent : MouseEvent {
     // DeltaModeCode
     const unsigned long              DOM_DELTA_PIXEL = 0x00;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to