Changeset 280915 in webkit
- Timestamp:
- Aug 11, 2021, 9:56:24 AM (5 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
UIProcess/ios/WKContentView.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r280914 r280915 1 2021-08-11 Alex Christensen <achristensen@webkit.org> 2 3 Fix iOS debug build after r280875 4 https://bugs.webkit.org/show_bug.cgi?id=228683 5 6 * UIProcess/ios/WKContentView.mm: 7 (-[WKContentView _removeTemporaryFilesIfNecessary]): 8 1 9 2021-08-11 Per Arne <pvollan@apple.com> 2 10 -
trunk/Source/WebKit/UIProcess/ios/WKContentView.mm
r280875 r280915 336 336 NSError *error = nil; 337 337 if (![manager removeItemAtURL:coordinatedURL error:&error] || error) 338 LOG_ERROR( OS_LOG_DEFAULT,"WKContentViewInteraction failed to remove file at path %@ with error %@", coordinatedURL.path, error);338 LOG_ERROR("WKContentViewInteraction failed to remove file at path %@ with error %@", coordinatedURL.path, error); 339 339 }]; 340 340 if (error) 341 LOG_ERROR( OS_LOG_DEFAULT,"WKContentViewInteraction failed to coordinate removal of temporary file at path %@ with error %@", url, error);341 LOG_ERROR("WKContentViewInteraction failed to coordinate removal of temporary file at path %@ with error %@", url, error); 342 342 } 343 343 });
Note:
See TracChangeset
for help on using the changeset viewer.