| Index: third_party/WebKit/Source/core/css/CSSSegmentedFontFace.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSSegmentedFontFace.cpp b/third_party/WebKit/Source/core/css/CSSSegmentedFontFace.cpp
|
| index 4226d1c2d838c305f93a1a3f5c39cbdd6dcfc3a6..f563903d7a1f273365fbd3d169325df7a52d2956 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSSegmentedFontFace.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSSegmentedFontFace.cpp
|
| @@ -76,9 +76,8 @@ void CSSSegmentedFontFace::fontFaceInvalidated()
|
| pruneTable();
|
| }
|
|
|
| -void CSSSegmentedFontFace::addFontFace(RawPtr<FontFace> prpFontFace, bool cssConnected)
|
| +void CSSSegmentedFontFace::addFontFace(FontFace* fontFace, bool cssConnected)
|
| {
|
| - RawPtr<FontFace> fontFace = prpFontFace;
|
| pruneTable();
|
| fontFace->cssFontFace()->setSegmentedFontFace(this);
|
| if (cssConnected) {
|
| @@ -91,9 +90,8 @@ void CSSSegmentedFontFace::addFontFace(RawPtr<FontFace> prpFontFace, bool cssCon
|
| }
|
| }
|
|
|
| -void CSSSegmentedFontFace::removeFontFace(RawPtr<FontFace> prpFontFace)
|
| +void CSSSegmentedFontFace::removeFontFace(FontFace* fontFace)
|
| {
|
| - RawPtr<FontFace> fontFace = prpFontFace;
|
| FontFaceList::iterator it = m_fontFaces.find(fontFace);
|
| if (it == m_fontFaces.end())
|
| return;
|
|
|