[Webkit-unassigned] [Bug 133062] [WebKit2] Cleanup the build from unused variable in WebProcess module

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Mon May 19 05:31:02 PDT 2014


https://bugs.webkit.org/show_bug.cgi?id=133062


Csaba Osztrogonác <ossy at webkit.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
 Attachment #231675|review?, commit-queue?      |review-, commit-queue-
               Flag|                            |




--- Comment #2 from Csaba Osztrogonác <ossy at webkit.org>  2014-05-19 05:31:25 PST ---
(From update of attachment 231675)
View in context: https://bugs.webkit.org/attachment.cgi?id=231675&action=review

> Source/WebKit2/WebProcess/UserContent/WebUserContentController.cpp:144
> +    UNUSED_PARAM(scriptMessageHandlers);

scriptMessageHandlers is used if ENABLE(USER_MESSAGE_HANDLERS) 
is true, it should be placed in the #else case, like this:

#if ENABLE(USER_MESSAGE_HANDLERS)
   ...
#else
    UNUSED_PARAM(scriptMessageHandlers);
#endif

> Source/WebKit2/WebProcess/UserContent/WebUserContentController.cpp:157
> +    UNUSED_PARAM(identifier);

ditto

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list