| Index: third_party/WebKit/Source/core/css/resolver/FontBuilder.h
 | 
| diff --git a/third_party/WebKit/Source/core/css/resolver/FontBuilder.h b/third_party/WebKit/Source/core/css/resolver/FontBuilder.h
 | 
| index e51e702f67b656eaeeacf15a95e32785a5fec423..e49b7fc6ca78ae0620b1a6ba13049c5496f13ebe 100644
 | 
| --- a/third_party/WebKit/Source/core/css/resolver/FontBuilder.h
 | 
| +++ b/third_party/WebKit/Source/core/css/resolver/FontBuilder.h
 | 
| @@ -69,9 +69,9 @@ public:
 | 
|      void setFontSmoothing(FontSmoothingMode);
 | 
|  
 | 
|      // FIXME: These need to just vend a Font object eventually.
 | 
| -    void createFont(PassRefPtrWillBeRawPtr<FontSelector>, ComputedStyle&);
 | 
| +    void createFont(RawPtr<FontSelector>, ComputedStyle&);
 | 
|  
 | 
| -    void createFontForDocument(PassRefPtrWillBeRawPtr<FontSelector>, ComputedStyle&);
 | 
| +    void createFontForDocument(RawPtr<FontSelector>, ComputedStyle&);
 | 
|  
 | 
|      bool fontDirty() const { return m_flags; }
 | 
|  
 | 
| @@ -103,7 +103,7 @@ private:
 | 
|  
 | 
|      float getComputedSizeFromSpecifiedSize(FontDescription&, float effectiveZoom, float specifiedSize);
 | 
|  
 | 
| -    RawPtrWillBeMember<const Document> m_document;
 | 
| +    Member<const Document> m_document;
 | 
|      FontDescription m_fontDescription;
 | 
|  
 | 
|      enum class PropertySetFlag {
 | 
| 
 |