| Index: third_party/WebKit/Source/core/css/resolver/FontBuilder.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/resolver/FontBuilder.cpp b/third_party/WebKit/Source/core/css/resolver/FontBuilder.cpp
|
| index 82442e6ca21b46b170adfe5a4c4e95aad70b4997..43aaea1c8b38108be2d1b9b99ac6c9405539aa82 100644
|
| --- a/third_party/WebKit/Source/core/css/resolver/FontBuilder.cpp
|
| +++ b/third_party/WebKit/Source/core/css/resolver/FontBuilder.cpp
|
| @@ -334,7 +334,7 @@ void FontBuilder::updateComputedSize(FontDescription& fontDescription, const Com
|
| fontDescription.setComputedSize(computedSize);
|
| }
|
|
|
| -void FontBuilder::createFont(PassRefPtrWillBeRawPtr<FontSelector> fontSelector, ComputedStyle& style)
|
| +void FontBuilder::createFont(RawPtr<FontSelector> fontSelector, ComputedStyle& style)
|
| {
|
| if (!m_flags)
|
| return;
|
| @@ -384,7 +384,7 @@ void FontBuilder::createFont(PassRefPtrWillBeRawPtr<FontSelector> fontSelector,
|
| m_flags = 0;
|
| }
|
|
|
| -void FontBuilder::createFontForDocument(PassRefPtrWillBeRawPtr<FontSelector> fontSelector, ComputedStyle& documentStyle)
|
| +void FontBuilder::createFontForDocument(RawPtr<FontSelector> fontSelector, ComputedStyle& documentStyle)
|
| {
|
| FontDescription fontDescription = FontDescription();
|
| fontDescription.setLocale(documentStyle.locale());
|
|
|