Changeset 57375 in webkit


Ignore:
Timestamp:
Apr 9, 2010 3:50:22 PM (14 years ago)
Author:
weinig@apple.com
Message:

Fix for https://bugs.webkit.org/show_bug.cgi?id=37351
Cannot build with build-webkit --webkit2

Reviewed by Darin Adler.

Add some headers that it seems others are not getting
already.

  • Platform/mac/WorkQueueMac.cpp: #inlude <mach/mach_port.h>
  • Shared/mac/UpdateChunk.cpp: #inlude <mach/vm_map.h>
Location:
trunk/WebKit2
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit2/ChangeLog

    r57367 r57375  
     12010-04-09  Sam Weinig  <sam@webkit.org>
     2
     3        Reviewed by Darin Adler.
     4
     5        Fix for https://bugs.webkit.org/show_bug.cgi?id=37351
     6        Cannot build with build-webkit --webkit2
     7
     8        Add some headers that it seems others are not getting
     9        already.
     10
     11        * Platform/mac/WorkQueueMac.cpp: #inlude <mach/mach_port.h>
     12        * Shared/mac/UpdateChunk.cpp: #inlude <mach/vm_map.h>
     13
    1142010-04-09  Anders Carlsson  <andersca@apple.com>
    215
  • trunk/WebKit2/Platform/mac/WorkQueueMac.cpp

    r57359 r57375  
    2525
    2626#include "WorkQueue.h"
     27
     28#include <mach/mach_port.h>
    2729
    2830void WorkQueue::executeWorkItem(void* item)
  • trunk/WebKit2/Shared/mac/UpdateChunk.cpp

    r57359 r57375  
    3131#include "WebCoreTypeArgumentMarshalling.h"
    3232#include <WebCore/FloatRect.h>
     33#include <mach/vm_map.h>
    3334#include <wtf/RetainPtr.h>
    3435
Note: See TracChangeset for help on using the changeset viewer.