⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 280915 in webkit


Ignore:
Timestamp:
Aug 11, 2021, 9:56:24 AM (5 years ago)
Author:
achristensen@apple.com
Message:

Fix iOS debug build after r280875

https://bugs.webkit.org/show_bug.cgi?id=228683

  • UIProcess/ios/WKContentView.mm:

(-[WKContentView _removeTemporaryFilesIfNecessary]):

Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r280914 r280915  
     12021-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
    192021-08-11  Per Arne  <pvollan@apple.com>
    210
  • trunk/Source/WebKit/UIProcess/ios/WKContentView.mm

    r280875 r280915  
    336336                NSError *error = nil;
    337337                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);
    339339            }];
    340340            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);
    342342        }
    343343    });
Note: See TracChangeset for help on using the changeset viewer.