| Index: chrome/browser/browser_about_handler.h
|
| diff --git a/chrome/browser/browser_about_handler.h b/chrome/browser/browser_about_handler.h
|
| index d319fbed3773b861c93d5218ca6c838b5df92ca4..caaeba3bff6de25f7070b7baa905ce7e277f459c 100644
|
| --- a/chrome/browser/browser_about_handler.h
|
| +++ b/chrome/browser/browser_about_handler.h
|
| @@ -13,7 +13,7 @@
|
| #include <vector>
|
|
|
| #include "base/process.h"
|
| -#include "base/string_util.h"
|
| +#include "base/stringprintf.h"
|
|
|
| template <typename T> struct DefaultSingletonTraits;
|
| class GURL;
|
| @@ -60,7 +60,8 @@ class AboutTcmallocOutputs {
|
| // the output for a canonical renderer header string that
|
| // incorporates the pid.
|
| void RendererCallback(base::ProcessId pid, const std::string& output) {
|
| - SetOutput(StringPrintf("Renderer PID %d", static_cast<int>(pid)), output);
|
| + SetOutput(
|
| + base::StringPrintf("Renderer PID %d", static_cast<int>(pid)), output);
|
| }
|
|
|
| private:
|
|
|