| Index: base/win_util.cc
|
| ===================================================================
|
| --- base/win_util.cc (revision 56291)
|
| +++ base/win_util.cc (working copy)
|
| @@ -11,7 +11,7 @@
|
| #include "base/registry.h"
|
| #include "base/scoped_handle.h"
|
| #include "base/scoped_ptr.h"
|
| -#include "base/string_util.h"
|
| +#include "base/stringprintf.h"
|
|
|
| namespace win_util {
|
|
|
| @@ -373,7 +373,7 @@
|
| LocalFree(reinterpret_cast<HLOCAL>(string_buffer));
|
| } else {
|
| // The formating failed. simply convert the message value into a string.
|
| - SStringPrintf(&formatted_string, L"message number %d", messageid);
|
| + base::SStringPrintf(&formatted_string, L"message number %d", messageid);
|
| }
|
| return formatted_string;
|
| }
|
|
|