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

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

Issue 635233004: Replace FINAL and OVERRIDE with their C++11 counterparts in Source/modules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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/RTCStatsReport.h ('k') | Source/modules/mediastream/RTCStatsResponse.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/mediastream/RTCStatsRequestImpl.h
diff --git a/Source/modules/mediastream/RTCStatsRequestImpl.h b/Source/modules/mediastream/RTCStatsRequestImpl.h
index b5ccaa53e879514231f4c51eba260522b8014ced..63b9621a20799c1c4cdc999af0d1675dc3048b98 100644
--- a/Source/modules/mediastream/RTCStatsRequestImpl.h
+++ b/Source/modules/mediastream/RTCStatsRequestImpl.h
@@ -38,21 +38,21 @@ class MediaStreamTrack;
class RTCPeerConnection;
class RTCStatsCallback;
-class RTCStatsRequestImpl FINAL : public RTCStatsRequest, public ActiveDOMObject {
+class RTCStatsRequestImpl final : public RTCStatsRequest, public ActiveDOMObject {
public:
static RTCStatsRequestImpl* create(ExecutionContext*, RTCPeerConnection*, RTCStatsCallback*, MediaStreamTrack*);
virtual ~RTCStatsRequestImpl();
- virtual RTCStatsResponseBase* createResponse() OVERRIDE;
- virtual bool hasSelector() OVERRIDE;
- virtual MediaStreamComponent* component() OVERRIDE;
+ virtual RTCStatsResponseBase* createResponse() override;
+ virtual bool hasSelector() override;
+ virtual MediaStreamComponent* component() override;
- virtual void requestSucceeded(RTCStatsResponseBase*) OVERRIDE;
+ virtual void requestSucceeded(RTCStatsResponseBase*) override;
// ActiveDOMObject
- virtual void stop() OVERRIDE;
+ virtual void stop() override;
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
RTCStatsRequestImpl(ExecutionContext*, RTCPeerConnection*, RTCStatsCallback*, MediaStreamTrack*);
« no previous file with comments | « Source/modules/mediastream/RTCStatsReport.h ('k') | Source/modules/mediastream/RTCStatsResponse.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698