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

Unified Diff: Source/modules/mediastream/RTCStatsRequestImpl.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/RTCStatsRequestImpl.h
diff --git a/Source/modules/mediastream/RTCStatsRequestImpl.h b/Source/modules/mediastream/RTCStatsRequestImpl.h
index dda1ca88f4d146ec2b437f19cbbae13ca44a9ff1..41a9d564d3c848cd41913953048dff04ef6c1b86 100644
--- a/Source/modules/mediastream/RTCStatsRequestImpl.h
+++ b/Source/modules/mediastream/RTCStatsRequestImpl.h
@@ -42,16 +42,16 @@ class RTCStatsRequestImpl final : public RTCStatsRequest, public ActiveDOMObject
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(RTCStatsRequestImpl);
public:
static RTCStatsRequestImpl* create(ExecutionContext*, RTCPeerConnection*, RTCStatsCallback*, MediaStreamTrack*);
- virtual ~RTCStatsRequestImpl();
+ ~RTCStatsRequestImpl() override;
- virtual RTCStatsResponseBase* createResponse() override;
- virtual bool hasSelector() override;
- virtual MediaStreamComponent* component() override;
+ RTCStatsResponseBase* createResponse() override;
+ bool hasSelector() override;
+ MediaStreamComponent* component() override;
- virtual void requestSucceeded(RTCStatsResponseBase*) override;
+ void requestSucceeded(RTCStatsResponseBase*) override;
// ActiveDOMObject
- virtual void stop() override;
+ void stop() override;
DECLARE_VIRTUAL_TRACE();
« no previous file with comments | « Source/modules/mediastream/RTCSessionDescriptionRequestImpl.h ('k') | Source/modules/mediastream/RTCStatsResponse.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698