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

Unified Diff: Source/wtf/FilePrintStream.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 | « 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 db0b51f70c616d86c5a1012ea1ce62132e29a932..7e20d24dea22233c591a17a397938d4e924cd712 100644
--- a/Source/wtf/FilePrintStream.h
+++ b/Source/wtf/FilePrintStream.h
@@ -40,14 +40,14 @@ public:
};
FilePrintStream(FILE*, AdoptionMode = Adopt);
- virtual ~FilePrintStream();
+ ~FilePrintStream() override;
static PassOwnPtr<FilePrintStream> open(const char* filename, const char* mode);
FILE* file() { return m_file; }
- virtual void vprintf(const char* format, va_list) override WTF_ATTRIBUTE_PRINTF(2, 0);
- virtual void flush() override;
+ void vprintf(const char* format, va_list) override WTF_ATTRIBUTE_PRINTF(2, 0);
+ 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