Changeset 169985 in webkit


Ignore:
Timestamp:
Jun 14, 2014, 4:32:36 PM (11 years ago)
Author:
mitz@apple.com
Message:

iOS build fix.

  • UIProcess/API/Cocoa/WKWebView.mm:

(-[WKWebView _snapshotRect:intoImageOfWidth:completionHandler:]):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r169984 r169985  
     12014-06-14  Dan Bernstein  <mitz@apple.com>
     2
     3        iOS build fix.
     4
     5        * UIProcess/API/Cocoa/WKWebView.mm:
     6        (-[WKWebView _snapshotRect:intoImageOfWidth:completionHandler:]):
     7
    182014-06-14  Dan Bernstein  <mitz@apple.com>
    29
  • trunk/Source/WebKit2/UIProcess/API/Cocoa/WKWebView.mm

    r169962 r169985  
    20312031   
    20322032    void(^copiedCompletionHandler)(CGImageRef) = [completionHandler copy];
    2033     _page->takeSnapshot(WebCore::enclosingIntRect(snapshotRectInContentCoordinates), WebCore::expandedIntSize(WebCore::FloatSize(imageSize)), WebKit::SnapshotOptionsExcludeDeviceScaleFactor, [=](const WebKit::ShareableBitmap::Handle& imageHandle, CallbackBase::Error) {
     2033    _page->takeSnapshot(WebCore::enclosingIntRect(snapshotRectInContentCoordinates), WebCore::expandedIntSize(WebCore::FloatSize(imageSize)), WebKit::SnapshotOptionsExcludeDeviceScaleFactor, [=](const WebKit::ShareableBitmap::Handle& imageHandle, WebKit::CallbackBase::Error) {
    20342034#if PLATFORM(IOS)
    20352035        // Automatically delete when this goes out of scope.
Note: See TracChangeset for help on using the changeset viewer.