Changeset 155170 in webkit


Ignore:
Timestamp:
Sep 5, 2013 8:43:14 PM (11 years ago)
Author:
jinwoo7.song@samsung.com
Message:

Fix build warnings by unused parameter
https://bugs.webkit.org/show_bug.cgi?id=120821

Reviewed by Anders Carlsson.

Fix warning by removing unused parameter.

  • platform/graphics/gstreamer/TextSinkGStreamer.cpp:

(webkitTextSinkGetProperty):
(webkitTextSinkSetProperty):

  • platform/network/soup/SynchronousLoaderClientSoup.cpp:

(WebCore::SynchronousLoaderClient::didReceiveAuthenticationChallenge):

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r155168 r155170  
     12013-09-05  Jinwoo Song  <jinwoo7.song@samsung.com>
     2
     3        Fix build warnings by unused parameter
     4        https://bugs.webkit.org/show_bug.cgi?id=120821
     5
     6        Reviewed by Anders Carlsson.
     7
     8        Fix warning by removing unused parameter.
     9
     10        * platform/graphics/gstreamer/TextSinkGStreamer.cpp:
     11        (webkitTextSinkGetProperty):
     12        (webkitTextSinkSetProperty):
     13        * platform/network/soup/SynchronousLoaderClientSoup.cpp:
     14        (WebCore::SynchronousLoaderClient::didReceiveAuthenticationChallenge):
     15
    1162013-09-05  Andreas Kling  <akling@apple.com>
    217
  • trunk/Source/WebCore/platform/graphics/gstreamer/TextSinkGStreamer.cpp

    r154908 r155170  
    5050}
    5151
    52 static void webkitTextSinkGetProperty(GObject* object, guint propertyId,
    53     GValue* value, GParamSpec* pspec)
     52static void webkitTextSinkGetProperty(GObject*, guint /* propertyId */,
     53    GValue*, GParamSpec*)
    5454{
    5555    /* Do nothing with PropSync */
    5656}
    5757
    58 static void webkitTextSinkSetProperty(GObject* object, guint propertyId,
    59     const GValue* value, GParamSpec* pspec)
     58static void webkitTextSinkSetProperty(GObject*, guint /* propertyId */,
     59    const GValue*, GParamSpec*)
    6060{
    6161    /* Do nothing with PropSync */
  • trunk/Source/WebCore/platform/network/soup/SynchronousLoaderClientSoup.cpp

    r155108 r155170  
    3333namespace WebCore {
    3434
    35 void SynchronousLoaderClient::didReceiveAuthenticationChallenge(ResourceHandle* handle, const AuthenticationChallenge& challenge)
     35void SynchronousLoaderClient::didReceiveAuthenticationChallenge(ResourceHandle*, const AuthenticationChallenge&)
    3636{
    3737    notImplemented();
Note: See TracChangeset for help on using the changeset viewer.