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

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

Issue 1232333002: Fix virtual/override/final usage in the rest of Source/core/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
« no previous file with comments | « Source/core/timing/PerformanceCompositeTiming.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 5cc698671bd9d1b7cd66133fde6051644fae6c8f..7c4dc6457537010af8bb8485c266b063365cb879 100644
--- a/Source/core/timing/PerformanceMark.h
+++ b/Source/core/timing/PerformanceMark.h
@@ -40,7 +40,7 @@ public:
return new PerformanceMark(name, startTime);
}
- virtual bool isMark() override { return true; }
+ bool isMark() override { return true; }
DEFINE_INLINE_VIRTUAL_TRACE()
{
@@ -51,7 +51,7 @@ private:
PerformanceMark(const String& name, double startTime)
: PerformanceEntry(name, "mark", startTime, startTime) { }
- virtual ~PerformanceMark() { }
+ ~PerformanceMark() override { }
};
} // namespace blink
« no previous file with comments | « Source/core/timing/PerformanceCompositeTiming.h ('k') | Source/core/timing/PerformanceMeasure.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698