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

Unified Diff: Source/wtf/FilePrintStream.h

Issue 134663006: Update WTF classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 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') | Source/wtf/TypedArrayBase.h » ('J')
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 eae458af42dce5c44ea37a17862cd8657b74795b..abb26dc3f2d5864fff9f71fb116c7dacb81c635c 100644
--- a/Source/wtf/FilePrintStream.h
+++ b/Source/wtf/FilePrintStream.h
@@ -32,7 +32,7 @@
namespace WTF {
-class FilePrintStream : public PrintStream {
+class FilePrintStream FINAL : public PrintStream {
public:
enum AdoptionMode {
Adopt,
@@ -46,8 +46,8 @@ public:
FILE* file() { return m_file; }
- void vprintf(const char* format, va_list) WTF_ATTRIBUTE_PRINTF(2, 0);
- void flush();
+ virtual void vprintf(const char* format, va_list) WTF_ATTRIBUTE_PRINTF(2, 0) OVERRIDE;
+ virtual void flush() OVERRIDE;
private:
FILE* m_file;
« no previous file with comments | « no previous file | Source/wtf/Float32Array.h » ('j') | Source/wtf/TypedArrayBase.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698