diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-23 00:49:39 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-23 00:49:39 +0000 |
commit | c37b96fef3f5ccf7599aba147dfae0aecbef28a3 (patch) | |
tree | e9d760db110dc0778b19fb1bee775f88ed9c1b29 /skia | |
parent | 438af0d022a3b6b5602a04b114a2e4ed1d0e6443 (diff) | |
download | chromium_src-c37b96fef3f5ccf7599aba147dfae0aecbef28a3.zip chromium_src-c37b96fef3f5ccf7599aba147dfae0aecbef28a3.tar.gz chromium_src-c37b96fef3f5ccf7599aba147dfae0aecbef28a3.tar.bz2 |
Remove the 'using' declaration of StringAppendV.
BUG=None
TEST=trybots
Review URL: http://codereview.chromium.org/5993005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70012 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia')
-rw-r--r-- | skia/ext/google_logging.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/skia/ext/google_logging.cc b/skia/ext/google_logging.cc index 72328b8..aec809e 100644 --- a/skia/ext/google_logging.cc +++ b/skia/ext/google_logging.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. @@ -7,7 +7,7 @@ // that provides integration with the logging of your choice. #include "base/logging.h" -#include "base/string_util.h" +#include "base/stringprintf.h" void SkDebugf_FileLine(const char* file, int line, bool fatal, const char* format, ...) { @@ -15,7 +15,7 @@ void SkDebugf_FileLine(const char* file, int line, bool fatal, va_start(ap, format); std::string msg; - StringAppendV(&msg, format, ap); + base::StringAppendV(&msg, format, ap); logging::LogMessage(file, line, fatal ? logging::LOG_FATAL : logging::LOG_INFO).stream() |