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

Unified Diff: Source/core/timing/Performance.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/MemoryInfo.h ('k') | Source/core/timing/PerformanceMark.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/timing/Performance.h
diff --git a/Source/core/timing/Performance.h b/Source/core/timing/Performance.h
index e4941e1bad83b242854d10dace007f8bbe6c351c..0d2e9e6bfe2b9c823d03f70d25d81241e5e3b873 100644
--- a/Source/core/timing/Performance.h
+++ b/Source/core/timing/Performance.h
@@ -55,7 +55,7 @@ class UserTiming;
typedef WillBeHeapVector<RefPtrWillBeMember<PerformanceEntry> > PerformanceEntryVector;
-class Performance FINAL : public RefCountedWillBeGarbageCollectedFinalized<Performance>, public DOMWindowProperty, public EventTargetWithInlineData {
+class Performance final : public RefCountedWillBeGarbageCollectedFinalized<Performance>, public DOMWindowProperty, public EventTargetWithInlineData {
DEFINE_WRAPPERTYPEINFO();
REFCOUNTED_EVENT_TARGET(Performance);
WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(Performance);
@@ -66,8 +66,8 @@ public:
}
virtual ~Performance();
- virtual const AtomicString& interfaceName() const OVERRIDE;
- virtual ExecutionContext* executionContext() const OVERRIDE;
+ virtual const AtomicString& interfaceName() const override;
+ virtual ExecutionContext* executionContext() const override;
PassRefPtrWillBeRawPtr<MemoryInfo> memory() const;
PerformanceNavigation* navigation() const;
@@ -91,7 +91,7 @@ public:
void measure(const String& measureName, const String& startMark, const String& endMark, ExceptionState&);
void clearMeasures(const String& measureName);
- virtual void trace(Visitor*) OVERRIDE;
+ virtual void trace(Visitor*) override;
private:
explicit Performance(LocalFrame*);
« no previous file with comments | « Source/core/timing/MemoryInfo.h ('k') | Source/core/timing/PerformanceMark.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698