| Index: chrome/browser/chromeos/drop_shadow_label.cc
|
| ===================================================================
|
| --- chrome/browser/chromeos/drop_shadow_label.cc (revision 71168)
|
| +++ chrome/browser/chromeos/drop_shadow_label.cc (working copy)
|
| @@ -4,7 +4,6 @@
|
|
|
| #include "chrome/browser/chromeos/drop_shadow_label.h"
|
|
|
| -#include "base/utf_string_conversions.h"
|
| #include "gfx/canvas.h"
|
| #include "gfx/color_utils.h"
|
|
|
| @@ -45,19 +44,19 @@
|
| SkColorGetG(kDefaultColor),
|
| SkColorGetB(kDefaultColor));
|
| for (int i = 0; i < drop_shadow_size_; i++) {
|
| - canvas->DrawStringInt(WideToUTF16Hack(text), font(), color,
|
| + canvas->DrawStringInt(text, font(), color,
|
| text_bounds.x() + i, text_bounds.y(),
|
| text_bounds.width(), text_bounds.height(), flags);
|
| - canvas->DrawStringInt(WideToUTF16Hack(text), font(), color,
|
| + canvas->DrawStringInt(text, font(), color,
|
| text_bounds.x() + i, text_bounds.y() + i,
|
| text_bounds.width(), text_bounds.height(), flags);
|
| - canvas->DrawStringInt(WideToUTF16Hack(text), font(), color,
|
| + canvas->DrawStringInt(text, font(), color,
|
| text_bounds.x(), text_bounds.y() + i,
|
| text_bounds.width(), text_bounds.height(), flags);
|
| }
|
| }
|
|
|
| - canvas->DrawStringInt(WideToUTF16Hack(text), font(), GetColor(),
|
| + canvas->DrawStringInt(text, font(), GetColor(),
|
| text_bounds.x(), text_bounds.y(),
|
| text_bounds.width(), text_bounds.height(), flags);
|
|
|
|
|
| Property changes on: chrome/browser/chromeos/drop_shadow_label.cc
|
| ___________________________________________________________________
|
| Deleted: svn:eol-style
|
| - LF
|
|
|
|
|