Index: Source/bindings/core/v8/V8Binding.cpp |
diff --git a/Source/bindings/core/v8/V8Binding.cpp b/Source/bindings/core/v8/V8Binding.cpp |
index 3fa946a94691548c7f42b3762f349c4f802bef94..da5a425ec3ebd443c9b41a02b0e22cf56944cf11 100644 |
--- a/Source/bindings/core/v8/V8Binding.cpp |
+++ b/Source/bindings/core/v8/V8Binding.cpp |
@@ -584,13 +584,13 @@ static String replaceUnmatchedSurrogates(const String& string) |
} else if (U16_IS_TRAIL(c)) { |
// 0xDC00 <= c <= 0xDFFF |
// Append to U a U+FFFD REPLACEMENT CHARACTER. |
- u.append(WTF::Unicode::replacementCharacter); |
+ u.append(replacementCharacter); |
} else { |
// 0xD800 <= c <= 0xDBFF |
ASSERT(U16_IS_LEAD(c)); |
if (i == n - 1) { |
// 1. If i = n-1, then append to U a U+FFFD REPLACEMENT CHARACTER. |
- u.append(WTF::Unicode::replacementCharacter); |
+ u.append(replacementCharacter); |
} else { |
// 2. Otherwise, i < n-1: |
ASSERT(i < n - 1); |
@@ -606,7 +606,7 @@ static String replaceUnmatchedSurrogates(const String& string) |
++i; |
} else { |
// 3. Otherwise, d < 0xDC00 or d > 0xDFFF. Append to U a U+FFFD REPLACEMENT CHARACTER. |
- u.append(WTF::Unicode::replacementCharacter); |
+ u.append(replacementCharacter); |
} |
} |
} |