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

Unified Diff: Source/wtf/FilePrintStream.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 | « no previous file | Source/wtf/Float32Array.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/FilePrintStream.h
diff --git a/Source/wtf/FilePrintStream.h b/Source/wtf/FilePrintStream.h
index 441577f9d51b5d83a7029da8f50e3fb3e2e87d43..db0b51f70c616d86c5a1012ea1ce62132e29a932 100644
--- a/Source/wtf/FilePrintStream.h
+++ b/Source/wtf/FilePrintStream.h
@@ -32,7 +32,7 @@
namespace WTF {
-class WTF_EXPORT FilePrintStream FINAL : public PrintStream {
+class WTF_EXPORT FilePrintStream final : public PrintStream {
public:
enum AdoptionMode {
Adopt,
@@ -46,8 +46,8 @@ public:
FILE* file() { return m_file; }
- virtual void vprintf(const char* format, va_list) OVERRIDE WTF_ATTRIBUTE_PRINTF(2, 0);
- virtual void flush() OVERRIDE;
+ virtual void vprintf(const char* format, va_list) override WTF_ATTRIBUTE_PRINTF(2, 0);
+ virtual void flush() override;
private:
FILE* m_file;
« no previous file with comments | « no previous file | Source/wtf/Float32Array.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698