Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6155)

Unified Diff: chrome/browser/browser_about_handler.h

Issue 6997006: iwyu: Include stringprintf.h where appropriate, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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:

Powered by Google App Engine
This is Rietveld 408576698