Title: [269905] trunk/Source/WebKit
Revision
269905
Author
bb...@apple.com
Date
2020-11-17 09:09:11 -0800 (Tue, 17 Nov 2020)

Log Message

[Cocoa] _WKInspectorExtensionHost should conform to NSObject protocol
https://bugs.webkit.org/show_bug.cgi?id=219035

Reviewed by Alex Christensen.

This was overlooked in the initial patch. Without it, we can't call -isEqual: and
similar basic methods on a type of id<_WKInspectorExtensionHost>.

* UIProcess/API/Cocoa/_WKInspectorExtensionHost.h:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (269904 => 269905)


--- trunk/Source/WebKit/ChangeLog	2020-11-17 17:07:28 UTC (rev 269904)
+++ trunk/Source/WebKit/ChangeLog	2020-11-17 17:09:11 UTC (rev 269905)
@@ -1,3 +1,15 @@
+2020-11-17  Brian Burg  <bb...@apple.com>
+
+        [Cocoa] _WKInspectorExtensionHost should conform to NSObject protocol
+        https://bugs.webkit.org/show_bug.cgi?id=219035
+
+        Reviewed by Alex Christensen.
+
+        This was overlooked in the initial patch. Without it, we can't call -isEqual: and
+        similar basic methods on a type of id<_WKInspectorExtensionHost>.
+
+        * UIProcess/API/Cocoa/_WKInspectorExtensionHost.h:
+
 2020-11-17  Tim Horton  <timothy_hor...@apple.com>
 
         Preemptive build fix for https://bugs.webkit.org/show_bug.cgi?id=219024

Modified: trunk/Source/WebKit/UIProcess/API/Cocoa/_WKInspectorExtensionHost.h (269904 => 269905)


--- trunk/Source/WebKit/UIProcess/API/Cocoa/_WKInspectorExtensionHost.h	2020-11-17 17:07:28 UTC (rev 269904)
+++ trunk/Source/WebKit/UIProcess/API/Cocoa/_WKInspectorExtensionHost.h	2020-11-17 17:09:11 UTC (rev 269905)
@@ -30,7 +30,7 @@
 
 @class _WKInspectorExtension;
 
-@protocol _WKInspectorExtensionHost
+@protocol _WKInspectorExtensionHost <NSObject>
 @optional
 
 /**
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to