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

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

Powered by Google App Engine
This is Rietveld 408576698