| Index: ppapi/thunk/ppb_browser_font_trusted_thunk.cc
|
| diff --git a/ppapi/thunk/ppb_browser_font_trusted_thunk.cc b/ppapi/thunk/ppb_browser_font_trusted_thunk.cc
|
| index 5db8b84347b0c98f43ae685591ba880b368987d5..a7efc366a6d7508a78add1ad1288cd068906ab97 100644
|
| --- a/ppapi/thunk/ppb_browser_font_trusted_thunk.cc
|
| +++ b/ppapi/thunk/ppb_browser_font_trusted_thunk.cc
|
| @@ -54,8 +54,8 @@ PP_Bool DrawTextAt(PP_Resource font_id,
|
| EnterBrowserFont enter(font_id, true);
|
| if (enter.failed())
|
| return PP_FALSE;
|
| - return enter.object()->DrawTextAt(image_data, text, position, color, clip,
|
| - image_data_is_opaque);
|
| + return enter.object()->DrawTextAt(
|
| + image_data, text, position, color, clip, image_data_is_opaque);
|
| }
|
|
|
| int32_t MeasureText(PP_Resource font_id,
|
| @@ -85,15 +85,9 @@ int32_t PixelOffsetForCharacter(PP_Resource font_id,
|
| }
|
|
|
| const PPB_BrowserFont_Trusted_1_0 g_ppb_browser_font_trusted_thunk = {
|
| - &GetFontFamilies,
|
| - &Create,
|
| - &IsBrowserFont,
|
| - &Describe,
|
| - &DrawTextAt,
|
| - &MeasureText,
|
| - &CharacterOffsetForPixel,
|
| - &PixelOffsetForCharacter
|
| -};
|
| + &GetFontFamilies, &Create, &IsBrowserFont,
|
| + &Describe, &DrawTextAt, &MeasureText,
|
| + &CharacterOffsetForPixel, &PixelOffsetForCharacter};
|
|
|
| } // namespace
|
|
|
|
|