| Index: webkit/plugins/ppapi/ppb_flash_impl_linux.cc
|
| diff --git a/webkit/plugins/ppapi/ppb_flash_impl_linux.cc b/webkit/plugins/ppapi/ppb_flash_impl_linux.cc
|
| index 36739a4e3d1cd74c7b9534601b8dbc580e69d321..a4f4d4a5a7aeb360e40835077c78eeac86e5c4d2 100644
|
| --- a/webkit/plugins/ppapi/ppb_flash_impl_linux.cc
|
| +++ b/webkit/plugins/ppapi/ppb_flash_impl_linux.cc
|
| @@ -46,7 +46,7 @@ PP_Bool PPB_Flash_Impl::DrawGlyphs(PP_Instance,
|
| return PP_FALSE;
|
|
|
| // Set up the typeface.
|
| - scoped_refptr<StringVar> face_name(StringVar::FromPPVar(font_desc->face));
|
| + StringVar* face_name = StringVar::FromPPVar(font_desc->face);
|
| if (!face_name)
|
| return PP_FALSE;
|
| int style = SkTypeface::kNormal;
|
|
|