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

Unified Diff: chrome/common/extensions/update_manifest.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 | « chrome/browser/sync/notifier/chrome_system_resources.cc ('k') | skia/ext/google_logging.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/update_manifest.cc
diff --git a/chrome/common/extensions/update_manifest.cc b/chrome/common/extensions/update_manifest.cc
index 3329456715606e949e2619060b6369d4e775cfe7..c6e8788b82d12a33abf834917eff33783d66b067 100644
--- a/chrome/common/extensions/update_manifest.cc
+++ b/chrome/common/extensions/update_manifest.cc
@@ -35,7 +35,7 @@ void UpdateManifest::ParseError(const char* details, ...) {
// TODO(asargent) make a platform abstracted newline?
errors_ += "\r\n";
}
- StringAppendV(&errors_, details, args);
+ base::StringAppendV(&errors_, details, args);
va_end(args);
}
@@ -81,7 +81,7 @@ static void XmlErrorFunc(void *context, const char *message, ...) {
va_list args;
va_start(args, message);
std::string* error = static_cast<std::string*>(context);
- StringAppendV(error, message, args);
+ base::StringAppendV(error, message, args);
va_end(args);
}
« no previous file with comments | « chrome/browser/sync/notifier/chrome_system_resources.cc ('k') | skia/ext/google_logging.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698