Changeset 152495 in webkit


Ignore:
Timestamp:
Jul 9, 2013 9:22:29 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[Windows] Compile fix.
https://bugs.webkit.org/show_bug.cgi?id=106558

Patch by peavo@outlook.com <peavo@outlook.com> on 2013-07-09
Reviewed by Brent Fulgham.

On Windows, dispatch.h needs to be included before certain CFNetwork headers.

  • WebCorePrefix.h: Include dispatch.h.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r152494 r152495  
     12013-07-09  peavo@outlook.com  <peavo@outlook.com>
     2
     3        [Windows] Compile fix.
     4        https://bugs.webkit.org/show_bug.cgi?id=106558
     5
     6        Reviewed by Brent Fulgham.
     7
     8        On Windows, dispatch.h needs to be included before certain CFNetwork headers.
     9
     10        * WebCorePrefix.h: Include dispatch.h.
     11
    1122013-07-09  Mark Lam  <mark.lam@apple.com>
    213
  • trunk/Source/WebCore/WebCorePrefix.h

    r152426 r152495  
    169169   it explicitly here to make Windows more consistent with Mac. */
    170170#include <CFNetwork/CFNetwork.h>
     171// On Windows, dispatch.h needs to be included before certain CFNetwork headers.
     172#include <dispatch/dispatch.h>
    171173#endif
    172174#include <windows.h>
Note: See TracChangeset for help on using the changeset viewer.