Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(644)

Unified Diff: views/examples/example_base.cc

Issue 3835002: base: Remove 'using' declaration of StringAppendV. (Closed) Base URL: git://git.chromium.org/chromium.git
Patch Set: Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « skia/ext/google_logging.cc ('k') | webkit/tools/pepper_test_plugin/main.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/examples/example_base.cc
diff --git a/views/examples/example_base.cc b/views/examples/example_base.cc
index d61d88f344f52e91b33d58d50e9fb080029cac0a..6b57310deb7d4a6231fa9bbb49072d1d861a39e8 100644
--- a/views/examples/example_base.cc
+++ b/views/examples/example_base.cc
@@ -78,7 +78,7 @@ void ExampleBase::PrintStatus(const wchar_t* format, ...) {
va_list ap;
va_start(ap, format);
std::wstring msg;
- StringAppendV(&msg, format, ap);
+ base::StringAppendV(&msg, format, ap);
main_->SetStatus(msg);
}
« no previous file with comments | « skia/ext/google_logging.cc ('k') | webkit/tools/pepper_test_plugin/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698