Changeset 185776 in webkit


Ignore:
Timestamp:
Jun 19, 2015 4:33:39 PM (9 years ago)
Author:
Brent Fulgham
Message:

Follow-up fix to r185766.
https://bugs.webkit.org/show_bug.cgi?id=22132

Reviewed by Zalan Bujtas.

Suggested by Darin Adler in the bug.

  • platform/graphics/filters/FETile.cpp:

(WebCore::FETile::platformApplySoftware): Use WTF::move when passing
the new tileImageCopy RefPtr.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r185774 r185776  
     12015-06-19  Brent Fulgham  <bfulgham@apple.com>
     2
     3        Follow-up fix to r185766.
     4        https://bugs.webkit.org/show_bug.cgi?id=22132
     5
     6        Reviewed by Zalan Bujtas.
     7
     8        Suggested by Darin Adler in the bug.
     9
     10        * platform/graphics/filters/FETile.cpp:
     11        (WebCore::FETile::platformApplySoftware): Use WTF::move when passing
     12        the new tileImageCopy RefPtr.
     13
    1142015-06-19  Michael Catanzaro  <mcatanzaro@igalia.com>
    215
  • trunk/Source/WebCore/platform/graphics/filters/FETile.cpp

    r185766 r185776  
    7676        return;
    7777
    78     auto pattern = Pattern::create(tileImageCopy, true, true);
     78    auto pattern = Pattern::create(WTF::move(tileImageCopy), true, true);
    7979
    8080    AffineTransform patternTransform;
Note: See TracChangeset for help on using the changeset viewer.