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

Unified Diff: Source/wtf/text/TextCodecICU.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/Uint8ClampedArray.h ('k') | Source/wtf/text/TextCodecLatin1.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/text/TextCodecICU.h
diff --git a/Source/wtf/text/TextCodecICU.h b/Source/wtf/text/TextCodecICU.h
index b3e6e8d7b6844e64c0720b52223c7cac30dafa9b..b6efcef096a244c0250a67e66b4ecbd4cade95e7 100644
--- a/Source/wtf/text/TextCodecICU.h
+++ b/Source/wtf/text/TextCodecICU.h
@@ -42,15 +42,15 @@ public:
static void registerEncodingNames(EncodingNameRegistrar);
static void registerCodecs(TextCodecRegistrar);
- virtual ~TextCodecICU();
+ ~TextCodecICU() override;
private:
TextCodecICU(const TextEncoding&);
static PassOwnPtr<TextCodec> create(const TextEncoding&, const void*);
- 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;
template<typename CharType>
CString encodeCommon(const CharType*, size_t length, UnencodableHandling);
« no previous file with comments | « Source/wtf/Uint8ClampedArray.h ('k') | Source/wtf/text/TextCodecLatin1.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698