| Index: Source/core/css/resolver/FontBuilder.h
|
| diff --git a/Source/core/css/resolver/FontBuilder.h b/Source/core/css/resolver/FontBuilder.h
|
| index 3a24f72120f95d9f5e412f47c94745a22d8de02f..86d042306636468931e2f6780360c6c0c2c7134b 100644
|
| --- a/Source/core/css/resolver/FontBuilder.h
|
| +++ b/Source/core/css/resolver/FontBuilder.h
|
| @@ -26,7 +26,6 @@
|
| #include "CSSValueKeywords.h"
|
|
|
| #include "platform/fonts/FontDescription.h"
|
| -#include "platform/heap/Handle.h"
|
| #include "wtf/PassRefPtr.h"
|
|
|
| namespace WebCore {
|
| @@ -79,10 +78,10 @@
|
| void setFontSmoothing(FontSmoothingMode);
|
|
|
| // FIXME: These need to just vend a Font object eventually.
|
| - void createFont(PassRefPtrWillBeRawPtr<FontSelector>, const RenderStyle* parentStyle, RenderStyle*);
|
| + void createFont(PassRefPtr<FontSelector>, const RenderStyle* parentStyle, RenderStyle*);
|
| // FIXME: This is nearly static, should either made fully static or decomposed into
|
| // FontBuilder calls at the callsite.
|
| - void createFontForDocument(PassRefPtrWillBeRawPtr<FontSelector>, RenderStyle*);
|
| + void createFontForDocument(PassRefPtr<FontSelector>, RenderStyle*);
|
|
|
| bool fontSizeHasViewportUnits() { return m_fontSizehasViewportUnits; }
|
|
|
|
|