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

Unified Diff: Source/core/timing/PerformanceRenderTiming.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/PerformanceMeasure.h ('k') | Source/core/timing/PerformanceResourceTiming.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/timing/PerformanceRenderTiming.h
diff --git a/Source/core/timing/PerformanceRenderTiming.h b/Source/core/timing/PerformanceRenderTiming.h
index 6aad0945831609b77a2203d0dc5ea503596e0eb0..87e115b15e4c569fdfb72e8d1bf88501d20f8d34 100644
--- a/Source/core/timing/PerformanceRenderTiming.h
+++ b/Source/core/timing/PerformanceRenderTiming.h
@@ -51,13 +51,13 @@ public:
unsigned sourceFrame() const;
- virtual bool isRender() override { return true; }
+ bool isRender() override { return true; }
DECLARE_VIRTUAL_TRACE();
private:
PerformanceRenderTiming(Document* requestingDocument, unsigned sourceFrame, double startTime, double finishTime);
- virtual ~PerformanceRenderTiming();
+ ~PerformanceRenderTiming() override;
unsigned m_sourceFrame;
RefPtrWillBeMember<Document> m_requestingDocument;
« no previous file with comments | « Source/core/timing/PerformanceMeasure.h ('k') | Source/core/timing/PerformanceResourceTiming.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698