Changeset 206373 in webkit


Ignore:
Timestamp:
Sep 26, 2016 7:17:58 AM (8 years ago)
Author:
Michael Catanzaro
Message:

[GTK] Unnecessary extern functions in FontPlatformDataFreeType.cpp
https://bugs.webkit.org/show_bug.cgi?id=162555

Reviewed by Carlos Garcia Campos.

These functions should be file-static.

  • platform/graphics/freetype/FontPlatformDataFreeType.cpp:

(WebCore::convertFontConfigSubpixelOrder):
(WebCore::convertFontConfigHintStyle):
(WebCore::setCairoFontOptionsFromFontConfigPattern):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r206372 r206373  
     12016-09-26  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        [GTK] Unnecessary extern functions in FontPlatformDataFreeType.cpp
     4        https://bugs.webkit.org/show_bug.cgi?id=162555
     5
     6        Reviewed by Carlos Garcia Campos.
     7
     8        These functions should be file-static.
     9
     10        * platform/graphics/freetype/FontPlatformDataFreeType.cpp:
     11        (WebCore::convertFontConfigSubpixelOrder):
     12        (WebCore::convertFontConfigHintStyle):
     13        (WebCore::setCairoFontOptionsFromFontConfigPattern):
     14
    115== Rolled over to ChangeLog-2016-09-26 ==
  • trunk/Source/WebCore/platform/graphics/freetype/FontPlatformDataFreeType.cpp

    r200237 r206373  
    4343namespace WebCore {
    4444
    45 cairo_subpixel_order_t convertFontConfigSubpixelOrder(int fontConfigOrder)
     45static cairo_subpixel_order_t convertFontConfigSubpixelOrder(int fontConfigOrder)
    4646{
    4747    switch (fontConfigOrder) {
     
    6161}
    6262
    63 cairo_hint_style_t convertFontConfigHintStyle(int fontConfigStyle)
     63static cairo_hint_style_t convertFontConfigHintStyle(int fontConfigStyle)
    6464{
    6565    switch (fontConfigStyle) {
     
    7676}
    7777
    78 void setCairoFontOptionsFromFontConfigPattern(cairo_font_options_t* options, FcPattern* pattern)
     78static void setCairoFontOptionsFromFontConfigPattern(cairo_font_options_t* options, FcPattern* pattern)
    7979{
    8080    FcBool booleanResult;
Note: See TracChangeset for help on using the changeset viewer.