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

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

Issue 1218293019: Fix virtual/override/final usage in Source/wtf/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 5 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
« no previous file with comments | « Source/wtf/text/TextCodecReplacement.h ('k') | Source/wtf/text/TextCodecUTF8.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/text/TextCodecUTF16.h
diff --git a/Source/wtf/text/TextCodecUTF16.h b/Source/wtf/text/TextCodecUTF16.h
index d548f275db30cd06d382df29f9d2c360d8c41bda..cc2f37376a4908d89554e6f123f380fcd8135834 100644
--- a/Source/wtf/text/TextCodecUTF16.h
+++ b/Source/wtf/text/TextCodecUTF16.h
@@ -37,9 +37,9 @@ namespace WTF {
TextCodecUTF16(bool littleEndian) : m_littleEndian(littleEndian), m_haveBufferedByte(false) { }
- virtual String decode(const char*, size_t length, FlushBehavior, bool stopOnError, bool& sawError) override;
- virtual CString encode(const UChar*, size_t length, UnencodableHandling) override;
- virtual CString encode(const LChar*, size_t length, UnencodableHandling) override;
+ String decode(const char*, size_t length, FlushBehavior, bool stopOnError, bool& sawError) override;
+ CString encode(const UChar*, size_t length, UnencodableHandling) override;
+ CString encode(const LChar*, size_t length, UnencodableHandling) override;
private:
bool m_littleEndian;
« no previous file with comments | « Source/wtf/text/TextCodecReplacement.h ('k') | Source/wtf/text/TextCodecUTF8.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698