summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/graphics/win/FontCustomPlatformData.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/graphics/win/FontCustomPlatformData.h')
-rw-r--r--WebCore/platform/graphics/win/FontCustomPlatformData.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/WebCore/platform/graphics/win/FontCustomPlatformData.h b/WebCore/platform/graphics/win/FontCustomPlatformData.h
index 909b79e..9f30424 100644
--- a/WebCore/platform/graphics/win/FontCustomPlatformData.h
+++ b/WebCore/platform/graphics/win/FontCustomPlatformData.h
@@ -32,9 +32,8 @@ class SharedBuffer;
struct FontCustomPlatformData : Noncopyable {
FontCustomPlatformData(CGFontRef cgFont)
- : m_cgFont(cgFont)
- {
- }
+ : m_cgFont(cgFont)
+ {}
~FontCustomPlatformData();
FontPlatformData fontPlatformData(int size, bool bold, bool italic);
@@ -42,7 +41,7 @@ struct FontCustomPlatformData : Noncopyable {
CGFontRef m_cgFont;
};
-FontCustomPlatformData* createFontCustomPlatformData(SharedBuffer*);
+FontCustomPlatformData* createFontCustomPlatformData(SharedBuffer* buffer);
}