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

Unified Diff: Source/modules/encoding/TextEncoder.h

Issue 145973021: Implement "replacement" text encoding. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Verify replacement name Created 6 years, 10 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/modules/encoding/TextEncoder.h
diff --git a/Source/modules/encoding/TextEncoder.h b/Source/modules/encoding/TextEncoder.h
index 752198d6ef8aa3455dcf9a7a10e077e6736b59df..5bb9df146d4e566d448cc71d956e78dfb282353d 100644
--- a/Source/modules/encoding/TextEncoder.h
+++ b/Source/modules/encoding/TextEncoder.h
@@ -56,9 +56,9 @@ public:
using RefCounted<TextEncoder>::deref;
private:
- TextEncoder(const String& encoding);
+ TextEncoder(const String& label, const String& name);
- WTF::TextEncoding m_encoding;
+ String m_encoding;
OwnPtr<WTF::TextCodec> m_codec;
};

Powered by Google App Engine
This is Rietveld 408576698