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

Unified Diff: Source/wtf/text/TextCodecReplacement.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/TextCodecLatin1.h ('k') | Source/wtf/text/TextCodecUTF16.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/text/TextCodecReplacement.h
diff --git a/Source/wtf/text/TextCodecReplacement.h b/Source/wtf/text/TextCodecReplacement.h
index 9e37e3e364308759c7efe32aab1fda4e4b02c06a..0d190f7348697c043b7b4996f20e9942dbb84103 100644
--- a/Source/wtf/text/TextCodecReplacement.h
+++ b/Source/wtf/text/TextCodecReplacement.h
@@ -10,7 +10,7 @@
namespace WTF {
-class TextCodecReplacement FINAL : public TextCodecUTF8 {
+class TextCodecReplacement final : public TextCodecUTF8 {
public:
TextCodecReplacement();
@@ -18,7 +18,7 @@ public:
static void registerCodecs(TextCodecRegistrar);
private:
- virtual String decode(const char*, size_t length, FlushBehavior, bool stopOnError, bool& sawError) OVERRIDE;
+ virtual String decode(const char*, size_t length, FlushBehavior, bool stopOnError, bool& sawError) override;
bool m_sentEOF;
};
« no previous file with comments | « Source/wtf/text/TextCodecLatin1.h ('k') | Source/wtf/text/TextCodecUTF16.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698