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

Unified Diff: webkit/glue/user_agent.cc

Issue 3404027: webkit: Append base:: in the StringPrintf calls. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 3 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
« no previous file with comments | « webkit/glue/plugins/webplugin_impl.cc ('k') | webkit/glue/webkit_glue.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/user_agent.cc
diff --git a/webkit/glue/user_agent.cc b/webkit/glue/user_agent.cc
index df4c3f54b704e2a19ed76361635e1e1ab74d3063..2babb49f56c9769342b7a7bf99aadc8a469e4a15 100644
--- a/webkit/glue/user_agent.cc
+++ b/webkit/glue/user_agent.cc
@@ -9,6 +9,7 @@
#endif
#include "base/string_util.h"
+#include "base/stringprintf.h"
#include "base/sys_info.h"
// Generated
@@ -21,7 +22,8 @@ namespace webkit_glue {
std::string GetProductVersion();
std::string GetWebKitVersion() {
- return StringPrintf("%d.%d", WEBKIT_VERSION_MAJOR, WEBKIT_VERSION_MINOR);
+ return base::StringPrintf("%d.%d", WEBKIT_VERSION_MAJOR,
+ WEBKIT_VERSION_MINOR);
}
std::string BuildOSCpuInfo() {
« no previous file with comments | « webkit/glue/plugins/webplugin_impl.cc ('k') | webkit/glue/webkit_glue.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698