| Index: third_party/WebKit/Source/platform/fonts/FontFallbackList.cpp
|
| diff --git a/third_party/WebKit/Source/platform/fonts/FontFallbackList.cpp b/third_party/WebKit/Source/platform/fonts/FontFallbackList.cpp
|
| index 2aea90a7da4a71113ca0e41538d771c107c714bf..722232c6d627f552ad8cfd152d21967cbd3b24f8 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/FontFallbackList.cpp
|
| +++ b/third_party/WebKit/Source/platform/fonts/FontFallbackList.cpp
|
| @@ -167,7 +167,7 @@ PassRefPtr<FontData> FontFallbackList::GetFontData(
|
| result = FontCache::GetFontCache()->GetFontData(font_description,
|
| curr_family->Family());
|
| if (result)
|
| - return result.Release();
|
| + return result;
|
| }
|
| }
|
| family_index = kCAllFamiliesScanned;
|
| @@ -176,7 +176,7 @@ PassRefPtr<FontData> FontFallbackList::GetFontData(
|
| // Try the user's preferred standard font.
|
| if (RefPtr<FontData> data = font_selector_->GetFontData(
|
| font_description, FontFamilyNames::webkit_standard))
|
| - return data.Release();
|
| + return data;
|
| }
|
|
|
| // Still no result. Hand back our last resort fallback font.
|
|
|