diff options
Diffstat (limited to 'webkit/glue/user_agent.cc')
-rw-r--r-- | webkit/glue/user_agent.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/webkit/glue/user_agent.cc b/webkit/glue/user_agent.cc index df4c3f5..2babb49 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() { |