Chromium Code Reviews

Unified Diff: webkit/blob/view_blob_internals_job.cc

Issue 4974001: base: Get rid of 'using' declaration of StringAppendF. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « webkit/appcache/view_appcache_internals_job.cc ('k') | webkit/glue/plugins/plugin_list_posix.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/blob/view_blob_internals_job.cc
diff --git a/webkit/blob/view_blob_internals_job.cc b/webkit/blob/view_blob_internals_job.cc
index 36463b99c17744e2c5e3efacdeaa7e52853713c5..00c3eb3dc6d126ccf87a88ac47cfee6bef413a7c 100644
--- a/webkit/blob/view_blob_internals_job.cc
+++ b/webkit/blob/view_blob_internals_job.cc
@@ -88,11 +88,11 @@ void AddHTMLListItem(const std::string& element_title,
void AddHTMLButton(const std::string& title,
const std::string& command,
std::string* out) {
- StringAppendF(out,
- "<input type=\"button\" value=\"%s\" "
- "onclick=\"SubmitCommand('%s')\" />",
- title.c_str(),
- command.c_str());
+ base::StringAppendF(out,
+ "<input type=\"button\" value=\"%s\" "
+ "onclick=\"SubmitCommand('%s')\" />",
+ title.c_str(),
+ command.c_str());
}
} // namespace
« no previous file with comments | « webkit/appcache/view_appcache_internals_job.cc ('k') | webkit/glue/plugins/plugin_list_posix.cc » ('j') | no next file with comments »

Powered by Google App Engine