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

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

Issue 604843002: Replace OVERRIDE and FINAL with their C++11 counterparts in WTF (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Keep the mechanical part only Created 6 years, 3 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/TextCodecICU.h ('k') | Source/wtf/text/TextCodecReplacement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/text/TextCodecLatin1.h
diff --git a/Source/wtf/text/TextCodecLatin1.h b/Source/wtf/text/TextCodecLatin1.h
index 81e80028caa24af15d0129e2b4a67ead0b7cbd28..8d95e793d253ce69229ee43dde4998e4b948186b 100644
--- a/Source/wtf/text/TextCodecLatin1.h
+++ b/Source/wtf/text/TextCodecLatin1.h
@@ -30,15 +30,15 @@
namespace WTF {
-class TextCodecLatin1 FINAL : public TextCodec {
+class TextCodecLatin1 final : public TextCodec {
public:
static void registerEncodingNames(EncodingNameRegistrar);
static void registerCodecs(TextCodecRegistrar);
private:
- 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;
+ 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;
template<typename CharType>
CString encodeCommon(const CharType*, size_t length, UnencodableHandling);
« no previous file with comments | « Source/wtf/text/TextCodecICU.h ('k') | Source/wtf/text/TextCodecReplacement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698