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

Unified Diff: Source/modules/mediastream/MediaStreamEvent.h

Issue 1227783004: Fix virtual/override/final usage in Source/modules/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase 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 | « Source/modules/mediastream/MediaStream.h ('k') | Source/modules/mediastream/MediaStreamRegistry.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/mediastream/MediaStreamEvent.h
diff --git a/Source/modules/mediastream/MediaStreamEvent.h b/Source/modules/mediastream/MediaStreamEvent.h
index 54c2005b523575e2409494c7b8bb76a8e45b7bc0..62ac07c1f6814f38fedd606b79ba4f53ff326f53 100644
--- a/Source/modules/mediastream/MediaStreamEvent.h
+++ b/Source/modules/mediastream/MediaStreamEvent.h
@@ -35,7 +35,7 @@ namespace blink {
class MediaStreamEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
- virtual ~MediaStreamEvent();
+ ~MediaStreamEvent() override;
static PassRefPtrWillBeRawPtr<MediaStreamEvent> create();
static PassRefPtrWillBeRawPtr<MediaStreamEvent> create(const AtomicString& type, bool canBubble, bool cancelable, MediaStream*);
@@ -44,7 +44,7 @@ public:
MediaStream* stream() const;
MediaStream* stream(bool&) const;
- virtual const AtomicString& interfaceName() const override;
+ const AtomicString& interfaceName() const override;
DECLARE_VIRTUAL_TRACE();
« no previous file with comments | « Source/modules/mediastream/MediaStream.h ('k') | Source/modules/mediastream/MediaStreamRegistry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698