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

Unified Diff: Source/modules/mediastream/RTCStatsResponse.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/RTCStatsRequestImpl.h ('k') | Source/modules/mediastream/RTCVoidRequestImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/mediastream/RTCStatsResponse.h
diff --git a/Source/modules/mediastream/RTCStatsResponse.h b/Source/modules/mediastream/RTCStatsResponse.h
index c36a29d2f46678219a82a0f02d696f05a776df1c..3d9e53519cf7b49eeb64d3dfe58a7b7f0d7c76f7 100644
--- a/Source/modules/mediastream/RTCStatsResponse.h
+++ b/Source/modules/mediastream/RTCStatsResponse.h
@@ -35,7 +35,7 @@
namespace blink {
-class RTCStatsResponse FINAL : public RTCStatsResponseBase, public ScriptWrappable {
+class RTCStatsResponse final : public RTCStatsResponseBase, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
public:
static RTCStatsResponse* create();
@@ -44,10 +44,10 @@ public:
RTCStatsReport* namedItem(const AtomicString& name);
- virtual size_t addReport(const String& id, const String& type, double timestamp) OVERRIDE;
- virtual void addStatistic(size_t report, const String& name, const String& value) OVERRIDE;
+ virtual size_t addReport(const String& id, const String& type, double timestamp) override;
+ virtual void addStatistic(size_t report, const String& name, const String& value) override;
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
RTCStatsResponse();
« no previous file with comments | « Source/modules/mediastream/RTCStatsRequestImpl.h ('k') | Source/modules/mediastream/RTCVoidRequestImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698