Skip to content

Commit 79667cd

Browse files
Fix iOS build.
* platform/ios/DragImageIOS.mm: (WebCore::deleteDragImage): git-svn-id: http://svn.webkit.org/repository/webkit/trunk@212253 268f45cc-cd09-0410-ab3c-d52691b4dbfc
1 parent 50edec7 commit 79667cd

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

Source/WebCore/ChangeLog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2017-02-13 Anders Carlsson <[email protected]>
2+
3+
Fix iOS build.
4+
5+
* platform/ios/DragImageIOS.mm:
6+
(WebCore::deleteDragImage):
7+
18
2017-02-13 Sam Weinig <[email protected]>
29

310
Rename MediaQueryExp.h/cpp to MediaQueryExpression.h/cpp

Source/WebCore/platform/ios/DragImageIOS.mm

+6
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,12 @@
3636

3737
namespace WebCore {
3838

39+
void deleteDragImage(RetainPtr<CGImageRef>)
40+
{
41+
// Since this is a RetainPtr, there's nothing additional we need to do to
42+
// delete it. It will be released when it falls out of scope.
43+
}
44+
3945
// FIXME: fix signature of dragImageSize() to avoid copying the argument.
4046
IntSize dragImageSize(RetainPtr<CGImageRef> image)
4147
{

0 commit comments

Comments
 (0)