Title: [273560] trunk/Source/WebKit
Revision
273560
Author
[email protected]
Date
2021-02-26 09:40:56 -0800 (Fri, 26 Feb 2021)

Log Message

Convert WKMediaPlaybackState NS_ENUM back to NSUInteger type
https://bugs.webkit.org/show_bug.cgi?id=222475
<rdar://problem/74787665>

Reviewed by Alex Christensen.

* UIProcess/API/Cocoa/WKWebView.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (273559 => 273560)


--- trunk/Source/WebKit/ChangeLog	2021-02-26 17:14:45 UTC (rev 273559)
+++ trunk/Source/WebKit/ChangeLog	2021-02-26 17:40:56 UTC (rev 273560)
@@ -1,3 +1,13 @@
+2021-02-26  Kate Cheney  <[email protected]>
+
+        Convert WKMediaPlaybackState NS_ENUM back to NSUInteger type
+        https://bugs.webkit.org/show_bug.cgi?id=222475
+        <rdar://problem/74787665>
+
+        Reviewed by Alex Christensen.
+
+        * UIProcess/API/Cocoa/WKWebView.h:
+
 2021-02-26  Tim Horton  <[email protected]>
 
         REGRESSION (r269824): macCatalyst WKWebView shows chunks of other tiles in the middle of content

Modified: trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebView.h (273559 => 273560)


--- trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebView.h	2021-02-26 17:14:45 UTC (rev 273559)
+++ trunk/Source/WebKit/UIProcess/API/Cocoa/WKWebView.h	2021-02-26 17:40:56 UTC (rev 273560)
@@ -61,7 +61,7 @@
 @interface WKWebView : NSView
 #endif
 
-typedef NS_ENUM(NSInteger, WKMediaPlaybackState) {
+typedef NS_ENUM(NSUInteger, WKMediaPlaybackState) {
     WKMediaPlaybackStateNone,
     WKMediaPlaybackStatePlaying,
     WKMediaPlaybackStatePaused,
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to