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

Unified Diff: Source/modules/mediastream/MediaStreamTrackEvent.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
Index: Source/modules/mediastream/MediaStreamTrackEvent.h
diff --git a/Source/modules/mediastream/MediaStreamTrackEvent.h b/Source/modules/mediastream/MediaStreamTrackEvent.h
index e09eb3e9aefe72877a3713989473a312f03cbe0b..ffc35d6593ceedc2e42b9d306f067199b38bf4de 100644
--- a/Source/modules/mediastream/MediaStreamTrackEvent.h
+++ b/Source/modules/mediastream/MediaStreamTrackEvent.h
@@ -35,7 +35,7 @@ class MediaStreamTrack;
class MediaStreamTrackEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
- virtual ~MediaStreamTrackEvent();
+ ~MediaStreamTrackEvent() override;
static PassRefPtrWillBeRawPtr<MediaStreamTrackEvent> create();
static PassRefPtrWillBeRawPtr<MediaStreamTrackEvent> create(const AtomicString& type, bool canBubble, bool cancelable, MediaStreamTrack*);
@@ -43,7 +43,7 @@ public:
MediaStreamTrack* track() const;
// Event
- virtual const AtomicString& interfaceName() const override;
+ const AtomicString& interfaceName() const override;
DECLARE_VIRTUAL_TRACE();
« no previous file with comments | « Source/modules/mediastream/MediaStreamTrack.h ('k') | Source/modules/mediastream/MediaStreamTrackSourcesRequestImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698