Changeset 140918 in webkit


Ignore:
Timestamp:
Jan 26, 2013 4:09:39 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Fix the test for CHANNEL_MESSAGING in idl files
https://bugs.webkit.org/show_bug.cgi?id=108006

Patch by Laszlo Gombos <l.gombos@samsung.com> on 2013-01-26
Reviewed by Alexey Proskuryakov.

No new tests, this is a build fix.

  • workers/WorkerContext.idl: Make sure ENABLE_CHANNEL_MESSAGING is

defined before using it to be consitent with other guards inside idl
files.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r140913 r140918  
     12013-01-26  Laszlo Gombos  <l.gombos@samsung.com>
     2
     3        Fix the test for CHANNEL_MESSAGING in idl files
     4        https://bugs.webkit.org/show_bug.cgi?id=108006
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        No new tests, this is a build fix.
     9
     10        * workers/WorkerContext.idl: Make sure ENABLE_CHANNEL_MESSAGING is
     11        defined before using it to be consitent with other guards inside idl
     12        files.
     13
    1142013-01-26  Tim Volodine  <timvolodine@chromium.org>
    215
  • trunk/Source/WebCore/workers/WorkerContext.idl

    r134447 r140918  
    7575    attribute WorkerLocationConstructor WorkerLocation;
    7676
    77 #if ENABLE_CHANNEL_MESSAGING
     77#if defined(ENABLE_CHANNEL_MESSAGING) && ENABLE_CHANNEL_MESSAGING
    7878    [JSCustomGetter] attribute MessageChannelConstructor MessageChannel;
    7979#endif
Note: See TracChangeset for help on using the changeset viewer.