Index: chrome/common/sandbox_mac.mm |
diff --git a/chrome/common/sandbox_mac.mm b/chrome/common/sandbox_mac.mm |
index 42cec0ceecaa18184be9b668f3f1c57036ac11fd..81defc74a5503ba460a6f924a94ea1adcde4d144 100644 |
--- a/chrome/common/sandbox_mac.mm |
+++ b/chrome/common/sandbox_mac.mm |
@@ -94,7 +94,7 @@ bool Sandbox::QuotePlainString(const std::string& src_utf8, std::string* dst) { |
if (c < 32 || c > 126) { |
// Any characters that aren't printable ASCII get the \u treatment. |
unsigned int as_uint = static_cast<unsigned int>(c); |
- StringAppendF(dst, "\\u%04X", as_uint); |
+ base::StringAppendF(dst, "\\u%04X", as_uint); |
continue; |
} |