| Index: views/controls/button/text_button.cc | 
| =================================================================== | 
| --- views/controls/button/text_button.cc	(revision 71168) | 
| +++ views/controls/button/text_button.cc	(working copy) | 
| @@ -360,7 +360,7 @@ | 
| text_bounds.y(), text_bounds.width(), text_bounds.height(), | 
| draw_string_flags); | 
| #else | 
| -      canvas->DrawStringInt(text_, | 
| +      canvas->DrawStringInt(UTF16ToWideHack(text_), | 
| font_, | 
| text_color, | 
| text_bounds.x(), | 
| @@ -371,11 +371,11 @@ | 
| #endif | 
| } else if (has_text_halo_) { | 
| canvas->AsCanvasSkia()->DrawStringWithHalo( | 
| -          text_, font_, text_color, text_halo_color_, | 
| +          UTF16ToWideHack(text_), font_, text_color, text_halo_color_, | 
| text_bounds.x(), text_bounds.y(), text_bounds.width(), | 
| text_bounds.height(), draw_string_flags); | 
| } else { | 
| -      canvas->DrawStringInt(text_, | 
| +      canvas->DrawStringInt(UTF16ToWideHack(text_), | 
| font_, | 
| text_color, | 
| text_bounds.x(), | 
|  |