Title: [280915] trunk/Source/WebKit
Revision
280915
Author
[email protected]
Date
2021-08-11 09:56:24 -0700 (Wed, 11 Aug 2021)

Log Message

Fix iOS debug build after r280875
       ​https://bugs.webkit.org/show_bug.cgi?id=228683

* UIProcess/ios/WKContentView.mm:
(-[WKContentView _removeTemporaryFilesIfNecessary]):

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (280914 => 280915)


--- trunk/Source/WebKit/ChangeLog	2021-08-11 16:51:46 UTC (rev 280914)
+++ trunk/Source/WebKit/ChangeLog	2021-08-11 16:56:24 UTC (rev 280915)
@@ -1,3 +1,11 @@
+2021-08-11  Alex Christensen  <[email protected]>
+
+        Fix iOS debug build after r280875
+       ​https://bugs.webkit.org/show_bug.cgi?id=228683
+
+        * UIProcess/ios/WKContentView.mm:
+        (-[WKContentView _removeTemporaryFilesIfNecessary]):
+
 2021-08-11  Per Arne  <[email protected]>
 
         [macOS] Disable menu bar related code in the WebContent process

Modified: trunk/Source/WebKit/UIProcess/ios/WKContentView.mm (280914 => 280915)


--- trunk/Source/WebKit/UIProcess/ios/WKContentView.mm	2021-08-11 16:51:46 UTC (rev 280914)
+++ trunk/Source/WebKit/UIProcess/ios/WKContentView.mm	2021-08-11 16:56:24 UTC (rev 280915)
@@ -335,10 +335,10 @@
             [coordinator coordinateWritingItemAtURL:url.get() options:NSFileCoordinatorWritingForDeleting error:&error byAccessor:^(NSURL *coordinatedURL) {
                 NSError *error = nil;
                 if (![manager removeItemAtURL:coordinatedURL error:&error] || error)
-                    LOG_ERROR(OS_LOG_DEFAULT, "WKContentViewInteraction failed to remove file at path %@ with error %@", coordinatedURL.path, error);
+                    LOG_ERROR("WKContentViewInteraction failed to remove file at path %@ with error %@", coordinatedURL.path, error);
             }];
             if (error)
-                LOG_ERROR(OS_LOG_DEFAULT, "WKContentViewInteraction failed to coordinate removal of temporary file at path %@ with error %@", url, error);
+                LOG_ERROR("WKContentViewInteraction failed to coordinate removal of temporary file at path %@ with error %@", url, error);
         }
     });
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to