Changeset 46417 in webkit


Ignore:
Timestamp:
Jul 27, 2009 8:09:17 AM (15 years ago)
Author:
pfeldman@chromium.org
Message:

2009-07-27 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Adam Roben.

Fix Chromium build breakage introduced in 46388.

https://bugs.webkit.org/show_bug.cgi?id=27705

  • platform/graphics/chromium/FontPlatformDataChromiumWin.cpp: (WebCore::FontPlatformData::description):
  • platform/graphics/chromium/FontPlatformDataChromiumWin.h:
Location:
trunk/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r46414 r46417  
     12009-07-27  Pavel Feldman  <pfeldman@chromium.org>
     2
     3        Reviewed by Adam Roben.
     4
     5        Fix Chromium build breakage introduced in 46388.
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=27705
     8
     9        * platform/graphics/chromium/FontPlatformDataChromiumWin.cpp:
     10        (WebCore::FontPlatformData::description):
     11        * platform/graphics/chromium/FontPlatformDataChromiumWin.h:
     12
    1132009-07-27  Tor Arne Vestbø  <tor.arne.vestbo@nokia.com>
    214
  • trunk/WebCore/platform/graphics/chromium/FontPlatformDataChromiumWin.cpp

    r45325 r46417  
    154154}
    155155
     156#ifndef NDEBUG
     157String FontPlatformData::description() const
     158{
     159    return String();
    156160}
     161#endif
     162
     163}
  • trunk/WebCore/platform/graphics/chromium/FontPlatformDataChromiumWin.h

    r39902 r46417  
    4646
    4747class FontDescription;
     48class String;
    4849
    4950class FontPlatformData {
     
    7879        return m_font == other.m_font && m_size == other.m_size;
    7980    }
     81
     82#ifndef NDEBUG
     83    String description() const;
     84#endif
    8085
    8186    SCRIPT_FONTPROPERTIES* scriptFontProperties() const;
Note: See TracChangeset for help on using the changeset viewer.