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

Unified Diff: Source/core/timing/PerformanceMark.h

Issue 634833002: Replacing the OVERRIDE with override and FINAL with final in WebKit/Source/core/timing (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/core/timing/Performance.h ('k') | Source/core/timing/PerformanceMeasure.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/timing/PerformanceMark.h
diff --git a/Source/core/timing/PerformanceMark.h b/Source/core/timing/PerformanceMark.h
index 793cb80007430fc5b37505bf1d0aa984155f1a66..ae57d1e4d91e24f7e29fb73cd0f43c18214bda49 100644
--- a/Source/core/timing/PerformanceMark.h
+++ b/Source/core/timing/PerformanceMark.h
@@ -33,7 +33,7 @@
namespace blink {
-class PerformanceMark FINAL : public PerformanceEntry {
+class PerformanceMark final : public PerformanceEntry {
DEFINE_WRAPPERTYPEINFO();
public:
static PassRefPtrWillBeRawPtr<PerformanceMark> create(const String& name, double startTime)
@@ -41,9 +41,9 @@ public:
return adoptRefWillBeNoop(new PerformanceMark(name, startTime));
}
- virtual bool isMark() OVERRIDE { return true; }
+ virtual bool isMark() override { return true; }
- virtual void trace(Visitor* visitor) OVERRIDE
+ virtual void trace(Visitor* visitor) override
{
PerformanceEntry::trace(visitor);
}
« no previous file with comments | « Source/core/timing/Performance.h ('k') | Source/core/timing/PerformanceMeasure.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698