diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-01 11:17:37 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-01 11:17:37 +0000 |
commit | d3451d83da3c72c35c0c6b391833fe47f0b4236a (patch) | |
tree | 334d32cdf9874f6bbea3534b74f741f82907d30b /chrome_frame/bho.cc | |
parent | 244f335890efb6fa0916b80afdecb80dcb3764a4 (diff) | |
download | chromium_src-d3451d83da3c72c35c0c6b391833fe47f0b4236a.zip chromium_src-d3451d83da3c72c35c0c6b391833fe47f0b4236a.tar.gz chromium_src-d3451d83da3c72c35c0c6b391833fe47f0b4236a.tar.bz2 |
chrome_frame: 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/3594002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61166 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/bho.cc')
-rw-r--r-- | chrome_frame/bho.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/chrome_frame/bho.cc b/chrome_frame/bho.cc index 58c5dc5..68342b9 100644 --- a/chrome_frame/bho.cc +++ b/chrome_frame/bho.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Copyright (c) 2010 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -11,6 +11,7 @@ #include "base/path_service.h" #include "base/scoped_bstr_win.h" #include "base/string_util.h" +#include "base/stringprintf.h" #include "chrome_tab.h" // NOLINT #include "chrome_frame/crash_reporting/crash_metrics.h" #include "chrome_frame/extra_system_apis.h" @@ -265,7 +266,7 @@ HRESULT Bho::OnHttpEquiv(IBrowserService_OnHttpEquiv_Fn original_httpequiv, NavigationManager* mgr = NavigationManager::GetThreadInstance(); DCHECK(mgr); DLOG(INFO) << "Found tag in page. Marking browser." << - StringPrintf(" tid=0x%08X", ::GetCurrentThreadId()); + base::StringPrintf(" tid=0x%08X", ::GetCurrentThreadId()); if (mgr) { // TODO(tommi): See if we can't figure out a cleaner way to avoid // this. For some documents we can hit a problem here. When we |