Changeset 168544 in webkit


Ignore:
Timestamp:
May 9, 2014 12:31:56 PM (10 years ago)
Author:
timothy_horton@apple.com
Message:

[iOS WebKit2] Flush RemoteLayerBackingStore contexts on a secondary queue
https://bugs.webkit.org/show_bug.cgi?id=132667
<rdar://problem/15349483>

  • WebProcess/WebPage/mac/RemoteLayerTreeDrawingArea.mm:

(WebKit::RemoteLayerTreeDrawingArea::BackingStoreFlusher::create):
Address a missed review comment about a missing std::move.

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r168541 r168544  
     12014-05-09  Tim Horton  <timothy_horton@apple.com>
     2
     3        [iOS WebKit2] Flush RemoteLayerBackingStore contexts on a secondary queue
     4        https://bugs.webkit.org/show_bug.cgi?id=132667
     5        <rdar://problem/15349483>
     6
     7        * WebProcess/WebPage/mac/RemoteLayerTreeDrawingArea.mm:
     8        (WebKit::RemoteLayerTreeDrawingArea::BackingStoreFlusher::create):
     9        Address a missed review comment about a missing std::move.
     10
    1112014-05-09  Anders Carlsson  <andersca@apple.com>
    212
  • trunk/Source/WebKit2/WebProcess/WebPage/mac/RemoteLayerTreeDrawingArea.mm

    r168509 r168544  
    320320PassRefPtr<RemoteLayerTreeDrawingArea::BackingStoreFlusher> RemoteLayerTreeDrawingArea::BackingStoreFlusher::create(IPC::Connection* connection, std::unique_ptr<IPC::MessageEncoder> encoder, Vector<RetainPtr<CGContextRef>> contextsToFlush)
    321321{
    322     return adoptRef(new RemoteLayerTreeDrawingArea::BackingStoreFlusher(connection, std::move(encoder), contextsToFlush));
     322    return adoptRef(new RemoteLayerTreeDrawingArea::BackingStoreFlusher(connection, std::move(encoder), std::move(contextsToFlush)));
    323323}
    324324
Note: See TracChangeset for help on using the changeset viewer.