diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-29 00:54:13 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-29 00:54:13 +0000 |
commit | 1c32402767e49d21eea7470cd7b89f682755d391 (patch) | |
tree | d3a11c042eb63dcb1032002038a987d0c191926e /webkit/glue/user_agent.cc | |
parent | d4bc96e84f87586da6a312a3c8eed3a12b3221d3 (diff) | |
download | chromium_src-1c32402767e49d21eea7470cd7b89f682755d391.zip chromium_src-1c32402767e49d21eea7470cd7b89f682755d391.tar.gz chromium_src-1c32402767e49d21eea7470cd7b89f682755d391.tar.bz2 |
webkit: Append base:: in the StringPrintf calls.
(Note: This is a TODO in string_util.h)
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/3404027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@60885 0039d316-1c4b-4281-b951-d872f2087c98
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() { |