Changeset 195218 in webkit


Ignore:
Timestamp:
Jan 18, 2016 5:26:52 AM (8 years ago)
Author:
Csaba Osztrogonác
Message:

Remove the SKIP_UNUSED_PARAM define
https://bugs.webkit.org/show_bug.cgi?id=153129

Reviewed by Michael Catanzaro.

  • bindings/js/WebCoreJSBuiltinInternals.cpp:

(WebCore::JSBuiltinInternalFunctions::visit):
(WebCore::JSBuiltinInternalFunctions::initialize):

  • bindings/js/WebCoreJSBuiltinInternals.h:
Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r195185 r195218  
     12016-01-18  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        Remove the SKIP_UNUSED_PARAM define
     4        https://bugs.webkit.org/show_bug.cgi?id=153129
     5
     6        Reviewed by Michael Catanzaro.
     7
     8        * bindings/js/WebCoreJSBuiltinInternals.cpp:
     9        (WebCore::JSBuiltinInternalFunctions::visit):
     10        (WebCore::JSBuiltinInternalFunctions::initialize):
     11        * bindings/js/WebCoreJSBuiltinInternals.h:
     12
    1132016-01-17  Simon Fraser  <simon.fraser@apple.com>
    214
  • trunk/Source/WebCore/bindings/js/WebCoreJSBuiltinInternals.cpp

    r194960 r195218  
    6262    m_writableStreamInternalsFunctions.visit(visitor);
    6363#endif
    64 #ifndef SKIP_UNUSED_PARAM
     64#if !ENABLE(STREAMS_API) && !ENABLE(MEDIA_STREAM)
    6565    UNUSED_PARAM(visitor);
    6666#endif
     
    110110    globalObject.addStaticGlobals(staticGlobals, WTF_ARRAY_LENGTH(staticGlobals));
    111111#endif
    112 #ifndef SKIP_UNUSED_PARAM
     112#if !ENABLE(STREAMS_API) && !ENABLE(MEDIA_STREAM)
    113113    UNUSED_PARAM(globalObject);
    114114    UNUSED_PARAM(vm);
  • trunk/Source/WebCore/bindings/js/WebCoreJSBuiltinInternals.h

    r194960 r195218  
    3838#endif
    3939
    40 #if ENABLE(STREAMS_API) || ENABLE(MEDIA_STREAM)
    41 #define SKIP_UNUSED_PARAM
    42 #endif
    43 
    4440namespace WebCore {
    4541
Note: See TracChangeset for help on using the changeset viewer.