Title: [273565] branches/safari-612.1.5-branch/Source/WebKit
Revision
273565
Author
[email protected]
Date
2021-02-26 10:33:05 -0800 (Fri, 26 Feb 2021)

Log Message

Cherry-pick r273560. rdar://problem/74796083

    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:

    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@273560 268f45cc-cd09-0410-ab3c-d52691b4dbfc

Modified Paths

Diff

Modified: branches/safari-612.1.5-branch/Source/WebKit/ChangeLog (273564 => 273565)


--- branches/safari-612.1.5-branch/Source/WebKit/ChangeLog	2021-02-26 18:24:35 UTC (rev 273564)
+++ branches/safari-612.1.5-branch/Source/WebKit/ChangeLog	2021-02-26 18:33:05 UTC (rev 273565)
@@ -1,3 +1,28 @@
+2021-02-26  Russell Epstein  <[email protected]>
+
+        Cherry-pick r273560. rdar://problem/74796083
+
+    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:
+    
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@273560 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    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-24  Russell Epstein  <[email protected]>
 
         Cherry-pick r273424. rdar://problem/74708164

Modified: branches/safari-612.1.5-branch/Source/WebKit/UIProcess/API/Cocoa/WKWebView.h (273564 => 273565)


--- branches/safari-612.1.5-branch/Source/WebKit/UIProcess/API/Cocoa/WKWebView.h	2021-02-26 18:24:35 UTC (rev 273564)
+++ branches/safari-612.1.5-branch/Source/WebKit/UIProcess/API/Cocoa/WKWebView.h	2021-02-26 18:33:05 UTC (rev 273565)
@@ -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