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

Unified Diff: Source/wtf/text/TextCodecUTF8.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/TextCodecUTF16.h ('k') | Source/wtf/text/TextCodecUserDefined.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/text/TextCodecUTF8.h
diff --git a/Source/wtf/text/TextCodecUTF8.h b/Source/wtf/text/TextCodecUTF8.h
index 5a2359acb8d8c0cc18c7b8dc53ceb98ae72f0c66..feb5682a77ed860c088fa11c6f2d1ce8ef45ec16 100644
--- a/Source/wtf/text/TextCodecUTF8.h
+++ b/Source/wtf/text/TextCodecUTF8.h
@@ -41,9 +41,9 @@ protected:
private:
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* characters, size_t length);
« no previous file with comments | « Source/wtf/text/TextCodecUTF16.h ('k') | Source/wtf/text/TextCodecUserDefined.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698