Index: util/stdlib/strlcpy.cc |
diff --git a/util/stdlib/strlcpy.cc b/util/stdlib/strlcpy.cc |
index 5cf5ed3ec5afe4a3ed49363c6e659eb10996f302..90d6d96ecc71c55ce200e9fb70506ed4944f32ce 100644 |
--- a/util/stdlib/strlcpy.cc |
+++ b/util/stdlib/strlcpy.cc |
@@ -16,7 +16,9 @@ |
namespace crashpad { |
-size_t c16lcpy(char16* destination, const char16* source, size_t length) { |
+size_t c16lcpy(base::char16* destination, |
+ const base::char16* source, |
+ size_t length) { |
size_t source_length = base::c16len(source); |
if (source_length < length) { |
base::c16memcpy(destination, source, source_length + 1); |