Title: [213820] releases/WebKitGTK/webkit-2.16/Source/WebCore
Revision
213820
Author
[email protected]
Date
2017-03-13 04:02:36 -0700 (Mon, 13 Mar 2017)

Log Message

Merge r213491 - [cairo] error C2065: 'quality': undeclared identifier since r213412
https://bugs.webkit.org/show_bug.cgi?id=169240

Patch by Fujii Hironori <[email protected]> on 2017-03-06
Reviewed by Ryosuke Niwa.

* platform/graphics/cairo/ImageBufferCairo.cpp:
(WebCore::ImageBuffer::toDataURL): Name the unnamed second argument 'quality'.

Modified Paths

Diff

Modified: releases/WebKitGTK/webkit-2.16/Source/WebCore/ChangeLog (213819 => 213820)


--- releases/WebKitGTK/webkit-2.16/Source/WebCore/ChangeLog	2017-03-13 11:01:20 UTC (rev 213819)
+++ releases/WebKitGTK/webkit-2.16/Source/WebCore/ChangeLog	2017-03-13 11:02:36 UTC (rev 213820)
@@ -1,3 +1,13 @@
+2017-03-06  Fujii Hironori  <[email protected]>
+
+        [cairo] error C2065: 'quality': undeclared identifier since r213412
+        https://bugs.webkit.org/show_bug.cgi?id=169240
+
+        Reviewed by Ryosuke Niwa.
+
+        * platform/graphics/cairo/ImageBufferCairo.cpp:
+        (WebCore::ImageBuffer::toDataURL): Name the unnamed second argument 'quality'.
+
 2017-03-06  Alex Christensen  <[email protected]>
 
         Fix URLs relative to file URLs with paths beginning with Windows drive letters

Modified: releases/WebKitGTK/webkit-2.16/Source/WebCore/platform/graphics/cairo/ImageBufferCairo.cpp (213819 => 213820)


--- releases/WebKitGTK/webkit-2.16/Source/WebCore/platform/graphics/cairo/ImageBufferCairo.cpp	2017-03-13 11:01:20 UTC (rev 213819)
+++ releases/WebKitGTK/webkit-2.16/Source/WebCore/platform/graphics/cairo/ImageBufferCairo.cpp	2017-03-13 11:02:36 UTC (rev 213820)
@@ -551,7 +551,7 @@
     return cairo_surface_write_to_png_stream(image, writeFunction, output) == CAIRO_STATUS_SUCCESS;
 }
 
-String ImageBuffer::toDataURL(const String& mimeType, std::optional<double>, CoordinateSystem) const
+String ImageBuffer::toDataURL(const String& mimeType, std::optional<double> quality, CoordinateSystem) const
 {
     ASSERT(MIMETypeRegistry::isSupportedImageMIMETypeForEncoding(mimeType));
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to