Title: [235497] trunk/Source/WebCore
Revision
235497
Author
yusukesuz...@slowstart.org
Date
2018-08-30 03:17:36 -0700 (Thu, 30 Aug 2018)

Log Message

Unreviewed, add comments about enum names to bitfields
https://bugs.webkit.org/show_bug.cgi?id=188945

* html/HTMLCollection.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (235496 => 235497)


--- trunk/Source/WebCore/ChangeLog	2018-08-30 05:05:19 UTC (rev 235496)
+++ trunk/Source/WebCore/ChangeLog	2018-08-30 10:17:36 UTC (rev 235497)
@@ -1,3 +1,10 @@
+2018-08-30  Yusuke Suzuki  <yusukesuz...@slowstart.org>
+
+        Unreviewed, add comments about enum names to bitfields
+        https://bugs.webkit.org/show_bug.cgi?id=188945
+
+        * html/HTMLCollection.h:
+
 2018-08-29  Andy Estes  <aes...@apple.com>
 
         Addressed additional review feedback after r235342.

Modified: trunk/Source/WebCore/html/HTMLCollection.h (235496 => 235497)


--- trunk/Source/WebCore/html/HTMLCollection.h	2018-08-30 05:05:19 UTC (rev 235496)
+++ trunk/Source/WebCore/html/HTMLCollection.h	2018-08-30 10:17:36 UTC (rev 235497)
@@ -103,9 +103,9 @@
 
     mutable Lock m_namedElementCacheAssignmentLock;
 
-    const unsigned m_collectionType : 5;
-    const unsigned m_invalidationType : 4;
-    const unsigned m_rootType : 1;
+    const unsigned m_collectionType : 5; // CollectionType
+    const unsigned m_invalidationType : 4; // NodeListInvalidationType
+    const unsigned m_rootType : 1; // RootType
 
     Ref<ContainerNode> m_ownerNode;
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to