Title: [264026] branches/safari-610.1.21.0-branch/Source/WebKit
Revision
264026
Author
repst...@apple.com
Date
2020-07-07 10:22:54 -0700 (Tue, 07 Jul 2020)

Log Message

Cherry-pick r264019. rdar://problem/65179688

    Forward declare WKContentWorld in WKUserScript.h
    <rdar://problem/65164826> and https://bugs.webkit.org/show_bug.cgi?id=214046

    Unreviewed.

    * UIProcess/API/Cocoa/WKUserScript.h:

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

Modified Paths

Diff

Modified: branches/safari-610.1.21.0-branch/Source/WebKit/ChangeLog (264025 => 264026)


--- branches/safari-610.1.21.0-branch/Source/WebKit/ChangeLog	2020-07-07 17:16:31 UTC (rev 264025)
+++ branches/safari-610.1.21.0-branch/Source/WebKit/ChangeLog	2020-07-07 17:22:54 UTC (rev 264026)
@@ -1,3 +1,27 @@
+2020-07-07  Alan Coon  <alanc...@apple.com>
+
+        Cherry-pick r264019. rdar://problem/65179688
+
+    Forward declare WKContentWorld in WKUserScript.h
+    <rdar://problem/65164826> and https://bugs.webkit.org/show_bug.cgi?id=214046
+    
+    Unreviewed.
+    
+    
+    * UIProcess/API/Cocoa/WKUserScript.h:
+    
+    
+    git-svn-id: https://svn.webkit.org/repository/webkit/trunk@264019 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+    2020-07-07  Brady Eidson  <beid...@apple.com>
+
+            Forward declare WKContentWorld in WKUserScript.h
+            <rdar://problem/65164826> and https://bugs.webkit.org/show_bug.cgi?id=214046
+
+            Unreviewed.
+
+            * UIProcess/API/Cocoa/WKUserScript.h:
+
 2020-07-06  Carlos Garcia Campos  <cgar...@igalia.com>
 
         [GTK][WPE] Change the cookies accept policy when ITP is enabled

Modified: branches/safari-610.1.21.0-branch/Source/WebKit/UIProcess/API/Cocoa/WKUserScript.h (264025 => 264026)


--- branches/safari-610.1.21.0-branch/Source/WebKit/UIProcess/API/Cocoa/WKUserScript.h	2020-07-07 17:16:31 UTC (rev 264025)
+++ branches/safari-610.1.21.0-branch/Source/WebKit/UIProcess/API/Cocoa/WKUserScript.h	2020-07-07 17:22:54 UTC (rev 264026)
@@ -24,16 +24,17 @@
  */
 
 #import <WebKit/WKFoundation.h>
-
 #import <Foundation/Foundation.h>
 
+NS_ASSUME_NONNULL_BEGIN
+
+@class WKContentWorld;
+
 /*! @enum WKUserScriptInjectionTime
  @abstract when a user script should be injected into a webpage.
  @constant WKUserScriptInjectionTimeAtDocumentStart    Inject the script after the document element has been created, but before any other content has been loaded.
  @constant WKUserScriptInjectionTimeAtDocumentEnd      Inject the script after the document has finished loading, but before any subresources may have finished loading.
  */
-NS_ASSUME_NONNULL_BEGIN
-
 typedef NS_ENUM(NSInteger, WKUserScriptInjectionTime) {
     WKUserScriptInjectionTimeAtDocumentStart,
     WKUserScriptInjectionTimeAtDocumentEnd
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to