Title: [285299] branches/safari-612-branch/Source/WebKitLegacy/mac
Revision
285299
Author
[email protected]
Date
2021-11-04 12:40:18 -0700 (Thu, 04 Nov 2021)

Log Message

Cherry-pick r285148. rdar://problem/81053743

    Make WebChromeClient's m_webView pointer weak.
    https://bugs.webkit.org/show_bug.cgi?id=232588

    Reviewed by David Kilzer.

    * WebCoreSupport/WebChromeClient.h:

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

Modified Paths

Diff

Modified: branches/safari-612-branch/Source/WebKitLegacy/mac/ChangeLog (285298 => 285299)


--- branches/safari-612-branch/Source/WebKitLegacy/mac/ChangeLog	2021-11-04 19:40:16 UTC (rev 285298)
+++ branches/safari-612-branch/Source/WebKitLegacy/mac/ChangeLog	2021-11-04 19:40:18 UTC (rev 285299)
@@ -1,5 +1,28 @@
 2021-11-04  Russell Epstein  <[email protected]>
 
+        Cherry-pick r285148. rdar://problem/81053743
+
+    Make WebChromeClient's m_webView pointer weak.
+    https://bugs.webkit.org/show_bug.cgi?id=232588
+    
+    Reviewed by David Kilzer.
+    
+    * WebCoreSupport/WebChromeClient.h:
+    
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@285148 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2021-11-01  Brady Eidson  <[email protected]>
+
+            Make WebChromeClient's m_webView pointer weak.
+            https://bugs.webkit.org/show_bug.cgi?id=232588
+
+            Reviewed by David Kilzer.
+
+            * WebCoreSupport/WebChromeClient.h:
+
+2021-11-04  Russell Epstein  <[email protected]>
+
         Cherry-pick r282313. rdar://problem/82987695
 
     CFNotificationCenterAddObserver() should use weak observers

Modified: branches/safari-612-branch/Source/WebKitLegacy/mac/WebCoreSupport/WebChromeClient.h (285298 => 285299)


--- branches/safari-612-branch/Source/WebKitLegacy/mac/WebCoreSupport/WebChromeClient.h	2021-11-04 19:40:16 UTC (rev 285298)
+++ branches/safari-612-branch/Source/WebKitLegacy/mac/WebCoreSupport/WebChromeClient.h	2021-11-04 19:40:18 UTC (rev 285299)
@@ -259,5 +259,5 @@
     bool m_mockVideoPresentationModeEnabled { false };
 #endif
 
-    WebView *m_webView;
+    __weak WebView *m_webView;
 };
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to