summaryrefslogtreecommitdiffstats
path: root/chrome/common/gpu_messages.cc
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-31 16:27:48 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-31 16:27:48 +0000
commit93f10522a6c5e0033ee521e2c853e9884c967c0f (patch)
treef75ef9a518efbe861ab90bd64ba3cfdd68b9b720 /chrome/common/gpu_messages.cc
parent8e6771318da33c189f8057307d33faacd8e0806e (diff)
downloadchromium_src-93f10522a6c5e0033ee521e2c853e9884c967c0f.zip
chromium_src-93f10522a6c5e0033ee521e2c853e9884c967c0f.tar.gz
chromium_src-93f10522a6c5e0033ee521e2c853e9884c967c0f.tar.bz2
chrome/common: Append base:: in the StringPrintf calls.
(Note: This is a TODO in string_util.h) BUG=None TEST=trybots Review URL: http://codereview.chromium.org/4111011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64567 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/gpu_messages.cc')
-rw-r--r--chrome/common/gpu_messages.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/common/gpu_messages.cc b/chrome/common/gpu_messages.cc
index db7f597..b8232b8 100644
--- a/chrome/common/gpu_messages.cc
+++ b/chrome/common/gpu_messages.cc
@@ -126,11 +126,11 @@ bool ParamTraits<GPUInfo> ::Read(const Message* m, void** iter, param_type* p) {
}
void ParamTraits<GPUInfo> ::Log(const param_type& p, std::string* l) {
- l->append(StringPrintf("<GPUInfo> %x %x %ls %d",
- p.vendor_id(),
- p.device_id(),
- p.driver_version().c_str(),
- p.can_lose_context()));
+ l->append(base::StringPrintf("<GPUInfo> %x %x %ls %d",
+ p.vendor_id(),
+ p.device_id(),
+ p.driver_version().c_str(),
+ p.can_lose_context()));
}
void ParamTraits<DxDiagNode> ::Write(Message* m, const param_type& p) {