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

Unified Diff: Source/modules/mediastream/RTCDataChannelEvent.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/RTCDataChannel.h ('k') | Source/modules/mediastream/RTCIceCandidateEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/mediastream/RTCDataChannelEvent.h
diff --git a/Source/modules/mediastream/RTCDataChannelEvent.h b/Source/modules/mediastream/RTCDataChannelEvent.h
index 07b72ef82fa23b4c4ebc3fa5b1fedf85dbde7c3a..85dfd854ca75ff7fa9eb181f03e789d336c43b62 100644
--- a/Source/modules/mediastream/RTCDataChannelEvent.h
+++ b/Source/modules/mediastream/RTCDataChannelEvent.h
@@ -34,14 +34,14 @@ namespace blink {
class RTCDataChannelEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
- virtual ~RTCDataChannelEvent();
+ ~RTCDataChannelEvent() override;
static PassRefPtrWillBeRawPtr<RTCDataChannelEvent> create();
static PassRefPtrWillBeRawPtr<RTCDataChannelEvent> create(const AtomicString& type, bool canBubble, bool cancelable, RTCDataChannel*);
RTCDataChannel* channel() const;
- virtual const AtomicString& interfaceName() const override;
+ const AtomicString& interfaceName() const override;
DECLARE_VIRTUAL_TRACE();
« no previous file with comments | « Source/modules/mediastream/RTCDataChannel.h ('k') | Source/modules/mediastream/RTCIceCandidateEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698