Changeset 190557 in webkit


Ignore:
Timestamp:
Oct 5, 2015, 12:04:44 AM (10 years ago)
Author:
zandobersek@gmail.com
Message:

Make gdk.h inclusion in FontPlatformDataFreeType.cpp properly GTK-specific
https://bugs.webkit.org/show_bug.cgi?id=149793

Reviewed by Carlos Garcia Campos.

  • platform/graphics/freetype/FontPlatformDataFreeType.cpp:

Instead of including <gdk/gdk.h> header for all platforms but EFL, only
include it for the GTK platform, since no other platform depends on the
GDK library.

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r190547 r190557  
     12015-10-05  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        Make gdk.h inclusion in FontPlatformDataFreeType.cpp properly GTK-specific
     4        https://bugs.webkit.org/show_bug.cgi?id=149793
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        * platform/graphics/freetype/FontPlatformDataFreeType.cpp:
     9        Instead of including <gdk/gdk.h> header for all platforms but EFL, only
     10        include it for the GTK platform, since no other platform depends on the
     11        GDK library.
     12
    1132015-10-03  Ricky Mondello  <rmondello@apple.com>
    214
  • trunk/Source/WebCore/platform/graphics/freetype/FontPlatformDataFreeType.cpp

    r188130 r190557  
    3636#include <wtf/text/WTFString.h>
    3737
    38 #if !PLATFORM(EFL)
     38#if PLATFORM(GTK)
    3939#include <gdk/gdk.h>
    4040#endif
Note: See TracChangeset for help on using the changeset viewer.