| Index: third_party/WebKit/WebCore/platform/text/TextEncoding.cpp
|
| ===================================================================
|
| --- third_party/WebKit/WebCore/platform/text/TextEncoding.cpp (revision 33160)
|
| +++ third_party/WebKit/WebCore/platform/text/TextEncoding.cpp (working copy)
|
| @@ -190,6 +190,11 @@
|
|
|
| UChar TextEncoding::backslashAsCurrencySymbol() const
|
| {
|
| +#if PLATFORM(CHROMIUM)
|
| + // Chromium does not want this. The blog article cited is not
|
| + // a justification for replacing U+005C with U+00A5.
|
| + return '\\';
|
| +#else
|
| if (noExtendedTextEncodingNameUsed())
|
| return '\\';
|
|
|
| @@ -198,6 +203,7 @@
|
| static const char* const a = atomicCanonicalTextEncodingName("Shift_JIS_X0213-2000");
|
| static const char* const b = atomicCanonicalTextEncodingName("EUC-JP");
|
| return (m_name == a || m_name == b) ? 0x00A5 : '\\';
|
| +#endif
|
| }
|
|
|
| bool TextEncoding::isNonByteBasedEncoding() const
|
|
|