Title: [264720] trunk/Source/WebKit
Revision
264720
Author
[email protected]
Date
2020-07-22 12:33:10 -0700 (Wed, 22 Jul 2020)

Log Message

[IPC hardening] WebKit::ObjCObjectGraph::decode() and encode() should use enum ObjCType type
<https://webkit.org/b/214618>
<rdar://problem/65777899>

Unreviewed fix to include the better header.

* Shared/mac/ObjCObjectGraph.mm:
- Switch #include from OptionSet.h to EnumTraits.h.

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (264719 => 264720)


--- trunk/Source/WebKit/ChangeLog	2020-07-22 19:27:05 UTC (rev 264719)
+++ trunk/Source/WebKit/ChangeLog	2020-07-22 19:33:10 UTC (rev 264720)
@@ -1,3 +1,14 @@
+2020-07-22  David Kilzer  <[email protected]>
+
+        [IPC hardening] WebKit::ObjCObjectGraph::decode() and encode() should use enum ObjCType type
+        <https://webkit.org/b/214618>
+        <rdar://problem/65777899>
+
+        Unreviewed fix to include the better header.
+
+        * Shared/mac/ObjCObjectGraph.mm:
+        - Switch #include from OptionSet.h to EnumTraits.h.
+
 2020-07-22  Jer Noble  <[email protected]>
 
         Unreviewed build fix after r264710; add a HAVE_AVPLAYER_VIDEORANGEOVERRIDE guard.

Modified: trunk/Source/WebKit/Shared/mac/ObjCObjectGraph.mm (264719 => 264720)


--- trunk/Source/WebKit/Shared/mac/ObjCObjectGraph.mm	2020-07-22 19:27:05 UTC (rev 264719)
+++ trunk/Source/WebKit/Shared/mac/ObjCObjectGraph.mm	2020-07-22 19:33:10 UTC (rev 264720)
@@ -33,7 +33,7 @@
 #import "WKAPICast.h"
 #import "WKBrowsingContextHandleInternal.h"
 #import "WKTypeRefWrapper.h"
-#import <wtf/OptionSet.h>
+#import <wtf/EnumTraits.h>
 #import <wtf/Optional.h>
 
 namespace WebKit {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to