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

Unified Diff: Source/wtf/text/TextEncoding.h

Issue 335803002: Remove unused text encoding quirks. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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
Index: Source/wtf/text/TextEncoding.h
diff --git a/Source/wtf/text/TextEncoding.h b/Source/wtf/text/TextEncoding.h
index 1e4aa7b3f683f8135a38cd9c8103a78086464b0b..058b3edfbb83af10315be442249d9aaaaa8d3bb1 100644
--- a/Source/wtf/text/TextEncoding.h
+++ b/Source/wtf/text/TextEncoding.h
@@ -58,14 +58,11 @@ public:
// Applies Unicode NFC normalization, then encodes the normalized string.
CString normalizeAndEncode(const String&, UnencodableHandling) const;
- UChar backslashAsCurrencySymbol() const;
-
private:
bool isNonByteBasedEncoding() const;
bool isUTF7Encoding() const;
const char* m_name;
- UChar m_backslashAsCurrencySymbol;
};
inline bool operator==(const TextEncoding& a, const TextEncoding& b) { return a.name() == b.name(); }

Powered by Google App Engine
This is Rietveld 408576698