Title: [266676] trunk/Source/WebCore
Revision
266676
Author
[email protected]
Date
2020-09-05 17:44:06 -0700 (Sat, 05 Sep 2020)

Log Message

Fix formatting of LegacyOverrideBuiltIns
https://bugs.webkit.org/show_bug.cgi?id=216218

Reviewed by Darin Adler.

Neglected to fix this bit of feedback in a previous change. Makes
enum class LegacyOverrideBuiltIns a bit more readable.

* bindings/js/JSDOMAbstractOperations.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (266675 => 266676)


--- trunk/Source/WebCore/ChangeLog	2020-09-06 00:26:23 UTC (rev 266675)
+++ trunk/Source/WebCore/ChangeLog	2020-09-06 00:44:06 UTC (rev 266676)
@@ -1,3 +1,15 @@
+2020-09-05  Sam Weinig  <[email protected]>
+
+        Fix formatting of LegacyOverrideBuiltIns
+        https://bugs.webkit.org/show_bug.cgi?id=216218
+
+        Reviewed by Darin Adler.
+
+        Neglected to fix this bit of feedback in a previous change. Makes 
+        enum class LegacyOverrideBuiltIns a bit more readable.
+
+        * bindings/js/JSDOMAbstractOperations.h:
+
 2020-09-05  Oriol Brufau  <[email protected]>
 
         [css-grid] Use min-content size for intrinsic maximums resolution

Modified: trunk/Source/WebCore/bindings/js/JSDOMAbstractOperations.h (266675 => 266676)


--- trunk/Source/WebCore/bindings/js/JSDOMAbstractOperations.h	2020-09-06 00:26:23 UTC (rev 266675)
+++ trunk/Source/WebCore/bindings/js/JSDOMAbstractOperations.h	2020-09-06 00:44:06 UTC (rev 266676)
@@ -32,10 +32,7 @@
 // Implementations of the abstract operations defined at
 // https://heycam.github.io/webidl/#legacy-platform-object-abstract-ops
 
-enum class LegacyOverrideBuiltIns {
-    No,
-    Yes
-};
+enum class LegacyOverrideBuiltIns { No, Yes };
 
 // An implementation of the 'named property visibility algorithm'
 // https://heycam.github.io/webidl/#dfn-named-property-visibility
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to