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

Unified Diff: Source/wtf/text/TextCodecUTF8.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/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 10a28cf7a6d7b0a86c63bfbee9bbd78e213dc8e7..5a2359acb8d8c0cc18c7b8dc53ceb98ae72f0c66 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;
+ 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* 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