Changeset 70398 in webkit


Ignore:
Timestamp:
Oct 23, 2010 1:02:02 PM (14 years ago)
Author:
Patrick Gansterer
Message:

2010-10-23 Patrick Gansterer <Patrick Gansterer>

Reviewed by David Kilzer.

[WINCE] Port COMPtr.h to WinCE
https://bugs.webkit.org/show_bug.cgi?id=48190

Don't include guiddef.h on WinCE. It's not required and only creates build problems.

  • platform/win/COMPtr.h:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r70397 r70398  
     12010-10-23  Patrick Gansterer  <paroga@webkit.org>
     2
     3        Reviewed by David Kilzer.
     4
     5        [WINCE] Port COMPtr.h to WinCE
     6        https://bugs.webkit.org/show_bug.cgi?id=48190
     7
     8        Don't include guiddef.h on WinCE. It's not required and only creates build problems.
     9
     10        * platform/win/COMPtr.h:
     11
    1122010-10-23  Patrick Gansterer  <paroga@webkit.org>
    213
  • trunk/WebCore/platform/win/COMPtr.h

    r65133 r70398  
    3131#endif
    3232
     33#include <unknwn.h>
     34#include <wtf/Assertions.h>
     35#include <wtf/HashTraits.h>
     36
     37#if !OS(WINCE)
    3338#include <guiddef.h>
    34 #include <unknwn.h>
    35 #include <WTF/Assertions.h>
    36 #include <WTF/HashTraits.h>
     39#endif
    3740
    3841typedef long HRESULT;
Note: See TracChangeset for help on using the changeset viewer.