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

Unified Diff: Source/core/timing/PerformanceBase.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/Performance.h ('k') | Source/core/timing/PerformanceCompositeTiming.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/timing/PerformanceBase.h
diff --git a/Source/core/timing/PerformanceBase.h b/Source/core/timing/PerformanceBase.h
index f2b8f1e74faa7f225296ab675959f967c1eeffe0..344ee39bd06f292308b24db49d8b58f9d2d4ff84 100644
--- a/Source/core/timing/PerformanceBase.h
+++ b/Source/core/timing/PerformanceBase.h
@@ -53,9 +53,9 @@ using PerformanceEntryVector = HeapVector<Member<PerformanceEntry>>;
class CORE_EXPORT PerformanceBase : public RefCountedGarbageCollectedEventTargetWithInlineData<PerformanceBase> {
REFCOUNTED_GARBAGE_COLLECTED_EVENT_TARGET(PerformanceBase);
public:
- virtual ~PerformanceBase();
+ ~PerformanceBase() override;
- virtual const AtomicString& interfaceName() const override;
+ const AtomicString& interfaceName() const override;
virtual PerformanceTiming* timing() const;
double now() const;
« no previous file with comments | « Source/core/timing/Performance.h ('k') | Source/core/timing/PerformanceCompositeTiming.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698