Changeset 44471

Show
Ignore:
Timestamp:
06/05/09 07:53:24 (10 months ago)
Author:
dglazkov@chromium.org
Message:

2009-06-05 Fumitoshi Ukai < ukai@google.com>

Reviewed by Dimitri Glazkov.

 https://bugs.webkit.org/show_bug.cgi?id=26215
Try to fix the Chromium build.

  • platform/graphics/chromium/GlyphPageTreeNodeChromiumWin.cpp: (WebCore::fillBMPGlyphs): (WebCore::fillNonBMPGlyphs):
Location:
trunk/WebCore
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r44470 r44471  
     12009-06-05  Fumitoshi Ukai  <ukai@google.com> 
     2 
     3        Reviewed by Dimitri Glazkov. 
     4 
     5        https://bugs.webkit.org/show_bug.cgi?id=26215 
     6        Try to fix the Chromium build. 
     7 
     8        * platform/graphics/chromium/GlyphPageTreeNodeChromiumWin.cpp: 
     9        (WebCore::fillBMPGlyphs): 
     10        (WebCore::fillNonBMPGlyphs): 
     11 
    1122009-06-05  Shinichiro Hamaji  <hamaji@chromium.org> 
    213 
  • trunk/WebCore/platform/graphics/chromium/GlyphPageTreeNodeChromiumWin.cpp

    r40635 r44471  
    7373{ 
    7474    HDC dc = GetDC((HWND)0); 
    75     HGDIOBJ oldFont = SelectObject(dc, fontData->m_font.hfont()); 
     75    HGDIOBJ oldFont = SelectObject(dc, fontData->platformData().hfont()); 
    7676 
    7777    TEXTMETRIC tm = {0}; 
     
    8181 
    8282        if (recurse) { 
    83             if (ChromiumBridge::ensureFontLoaded(fontData->m_font.hfont())) 
     83            if (ChromiumBridge::ensureFontLoaded(fontData->platformData().hfont())) 
    8484                return fillBMPGlyphs(offset, length, buffer, page, fontData, false); 
    8585            else { 
     
    192192 
    193193    UniscribeHelperTextRun state(buffer, length * 2, false, 
    194                                  fontData->m_font.hfont(), 
    195                                  fontData->m_font.scriptCache(), 
    196                                  fontData->m_font.scriptFontProperties()); 
     194                                 fontData->platformData().hfont(), 
     195                                 fontData->platformData().scriptCache(), 
     196                                 fontData->platformData().scriptFontProperties()); 
    197197    state.setInhibitLigate(true); 
    198198    state.setDisableFontFallback(true);