| Index: third_party/WebKit/Source/platform/fonts/TestFontSelector.h
|
| diff --git a/third_party/WebKit/Source/platform/fonts/TestFontSelector.h b/third_party/WebKit/Source/platform/fonts/TestFontSelector.h
|
| index 6a8403f908a6537e33d163b5fb7249c973a87551..fff8ac5f30ababd2dea746fa51b6539871fd52f0 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/TestFontSelector.h
|
| +++ b/third_party/WebKit/Source/platform/fonts/TestFontSelector.h
|
| @@ -42,11 +42,11 @@ namespace blink {
|
|
|
| class TestFontSelector : public FontSelector {
|
| public:
|
| - static PassRefPtrWillBeRawPtr<TestFontSelector> create(const String& path)
|
| + static RawPtr<TestFontSelector> create(const String& path)
|
| {
|
| RefPtr<SharedBuffer> fontBuffer = testing::readFromFile(path);
|
| String otsParseMessage;
|
| - return adoptRefWillBeNoop(new TestFontSelector(FontCustomPlatformData::create(
|
| + return (new TestFontSelector(FontCustomPlatformData::create(
|
| fontBuffer.get(), otsParseMessage)));
|
| }
|
|
|
|
|