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

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

Powered by Google App Engine
This is Rietveld 408576698