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

Unified Diff: Source/core/streams/Stream.h

Issue 640593002: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/core/[css|rendering|clipboard] (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebased the patch Created 6 years, 2 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/core/streams/ReadableStreamTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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*) { }
« no previous file with comments | « Source/core/streams/ReadableStreamTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698