Changeset 200985 in webkit


Ignore:
Timestamp:
May 16, 2016, 6:05:41 PM (9 years ago)
Author:
dino@apple.com
Message:

WebCoreJSBuiltinInternals won't compile if some build flags are off
https://bugs.webkit.org/show_bug.cgi?id=157777
<rdar://problem/26312967>

Reviewed by Simon Fraser.

Allow this file to compile when some build flags are disabled.

  • bindings/js/WebCoreJSBuiltinInternals.cpp:

(WebCore::JSBuiltinInternalFunctions::JSBuiltinInternalFunctions):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r200982 r200985  
     12016-05-16  Dean Jackson  <dino@apple.com>
     2
     3        WebCoreJSBuiltinInternals won't compile if some build flags are off
     4        https://bugs.webkit.org/show_bug.cgi?id=157777
     5        <rdar://problem/26312967>
     6
     7        Reviewed by Simon Fraser.
     8
     9        Allow this file to compile when some build flags are disabled.
     10
     11        * bindings/js/WebCoreJSBuiltinInternals.cpp:
     12        (WebCore::JSBuiltinInternalFunctions::JSBuiltinInternalFunctions):
     13
    1142016-05-16  Brady Eidson  <beidson@apple.com>
    215
  • trunk/Source/WebCore/bindings/js/WebCoreJSBuiltinInternals.cpp

    r199007 r200985  
    5050#endif
    5151{
     52#if !ENABLE(STREAMS_API) && !ENABLE(WEB_RTC)
     53    // FIXME: When none of the features that use this class are enabled, we
     54    // don't ever use the vm member. However, the logic of initializing
     55    // it when any of the features are enabled gets pretty messy.
     56    (void)vm;
     57#endif
    5258}
    5359
Note: See TracChangeset for help on using the changeset viewer.