Index: Source/core/streams/Stream.h |
diff --git a/Source/core/streams/Stream.h b/Source/core/streams/Stream.h |
index 39b19a1f81ca00830d3af128473f390f2f2c10bc..a0b8aff3b9e15734265e18736b0b98437c3afd34 100644 |
--- a/Source/core/streams/Stream.h |
+++ b/Source/core/streams/Stream.h |
@@ -43,7 +43,7 @@ namespace blink { |
class ExecutionContext; |
-class Stream FINAL : public RefCountedWillBeGarbageCollectedFinalized<Stream>, public ScriptWrappable, public ActiveDOMObject { |
+class Stream final : public RefCountedWillBeGarbageCollectedFinalized<Stream>, public ScriptWrappable, public ActiveDOMObject { |
DEFINE_WRAPPERTYPEINFO(); |
public: |
static PassRefPtrWillBeRawPtr<Stream> create(ExecutionContext* context, const String& mediaType) |
@@ -78,9 +78,9 @@ public: |
// Implementation of ActiveDOMObject. |
// |
// FIXME: Implement suspend() and resume() when necessary. |
- virtual void suspend() OVERRIDE; |
- virtual void resume() OVERRIDE; |
- virtual void stop() OVERRIDE; |
+ virtual void suspend() override; |
+ virtual void resume() override; |
+ virtual void stop() override; |
void trace(Visitor*) { } |