From a77fa2dc9cb9a10a31688a1bb24a9101194d51af Mon Sep 17 00:00:00 2001 From: "tfarina@chromium.org" Date: Mon, 15 Nov 2010 12:11:11 +0000 Subject: base: Get rid of 'using' declaration of StringAppendF. Update the callers to append base:: in the calls to StringAppendF. BUG=None TEST=trybots Review URL: http://codereview.chromium.org/4974001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66116 0039d316-1c4b-4281-b951-d872f2087c98 --- webkit/blob/view_blob_internals_job.cc | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'webkit/blob') diff --git a/webkit/blob/view_blob_internals_job.cc b/webkit/blob/view_blob_internals_job.cc index 36463b9..00c3eb3 100644 --- a/webkit/blob/view_blob_internals_job.cc +++ b/webkit/blob/view_blob_internals_job.cc @@ -88,11 +88,11 @@ void AddHTMLListItem(const std::string& element_title, void AddHTMLButton(const std::string& title, const std::string& command, std::string* out) { - StringAppendF(out, - "", - title.c_str(), - command.c_str()); + base::StringAppendF(out, + "", + title.c_str(), + command.c_str()); } } // namespace -- cgit v1.1