Changeset 190804 in webkit


Ignore:
Timestamp:
Oct 9, 2015 10:08:25 AM (9 years ago)
Author:
Csaba Osztrogonác
Message:

Fix the !ENABLE(STREAM_API) build after r190794
https://bugs.webkit.org/show_bug.cgi?id=149955

Reviewed by Darin Adler.

  • bindings/js/WebCoreJSBuiltinInternals.h:

(WebCore::JSBuiltinInternalFunctions::visit):
(WebCore::JSBuiltinInternalFunctions::init):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r190803 r190804  
     12015-10-09  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        Fix the !ENABLE(STREAM_API) build after r190794
     4        https://bugs.webkit.org/show_bug.cgi?id=149955
     5
     6        Reviewed by Darin Adler.
     7
     8        * bindings/js/WebCoreJSBuiltinInternals.h:
     9        (WebCore::JSBuiltinInternalFunctions::visit):
     10        (WebCore::JSBuiltinInternalFunctions::init):
     11
    1122015-10-09  Csaba Osztrogonác  <ossy@webkit.org>
    213
  • trunk/Source/WebCore/bindings/js/WebCoreJSBuiltinInternals.h

    r190794 r190804  
    4040#if ENABLE(STREAMS_API)
    4141        m_readableStreamInternalsFunctions.visit(visitor);
     42#else
     43        UNUSED_PARAM(visitor);
    4244#endif
    4345    }
     
    4547#if ENABLE(STREAMS_API)
    4648        m_readableStreamInternalsFunctions.init(globalObject);
     49#else
     50        UNUSED_PARAM(globalObject);
    4751#endif
    4852    }
Note: See TracChangeset for help on using the changeset viewer.