Got below build warning on latest build, might have casued by issue: https://bugs.webkit.org/show_bug.cgi?id=138684 ../../Source/WebKit2/Shared/WebCoreArgumentCoders.cpp:368:13: warning: unused parameter ‘element’ [-Wunused-parameter] static void pathPointCountApplierFunction(void* info, const PathElement* element)
Created attachment 247754 [details] Patch Fix build warning by using UNUSED_PARAM macro.
Comment on attachment 247754 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=247754&action=review > Source/WebKit2/Shared/WebCoreArgumentCoders.cpp:370 > static void pathPointCountApplierFunction(void* info, const PathElement* element) > { > + UNUSED_PARAM(element); It would be better to just remove the parameter name.
Created attachment 247828 [details] Patch-Updated-Review1 updated the patch as per review comments.
Comment on attachment 247828 [details] Patch-Updated-Review1 Clearing flags on attachment: 247828 Committed r180988: <http://trac.webkit.org/changeset/180988>
All reviewed patches have been landed. Closing bug.