| Index: chrome/browser/chromeos/status/power_menu_button.cc
|
| diff --git a/chrome/browser/chromeos/status/power_menu_button.cc b/chrome/browser/chromeos/status/power_menu_button.cc
|
| index 8132ca2acc45ca2449eafbc3baeb95f1e7627dfc..22f971eb61ed9eb4f5df6ed7252db2fe5aa1d5c5 100644
|
| --- a/chrome/browser/chromeos/status/power_menu_button.cc
|
| +++ b/chrome/browser/chromeos/status/power_menu_button.cc
|
| @@ -7,6 +7,7 @@
|
| #include <algorithm>
|
|
|
| #include "base/string_number_conversions.h"
|
| +#include "base/stringprintf.h"
|
| #include "base/time.h"
|
| #include "base/utf_string_conversions.h"
|
| #include "chrome/browser/chromeos/cros/cros_library.h"
|
| @@ -176,7 +177,7 @@ class PowerMenuButton::StatusView : public View {
|
| canvas->DrawBitmapInt(image, image_x, image_y);
|
|
|
| if (draw_percentage_text) {
|
| - string16 text = UTF8ToUTF16(StringPrintf(
|
| + string16 text = UTF8ToUTF16(base::StringPrintf(
|
| "%d%%",
|
| static_cast<int>(menu_button_->battery_percentage_)));
|
| int text_h = percentage_font_.GetHeight();
|
|
|