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

Unified Diff: Source/core/animation/Animation.h

Issue 1226293002: Fix virtual/override/final usage in Source/core/{animation,css,style}/. (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/animation/AngleSVGInterpolation.h ('k') | Source/core/animation/AnimationEffectTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/animation/Animation.h
diff --git a/Source/core/animation/Animation.h b/Source/core/animation/Animation.h
index 3478eb7adcc9e703fc57579a7e730df83c0aaf8d..88335cd477fda3e66804440c2f12fb715867b156 100644
--- a/Source/core/animation/Animation.h
+++ b/Source/core/animation/Animation.h
@@ -110,11 +110,11 @@ public:
DEFINE_ATTRIBUTE_EVENT_LISTENER(finish);
- virtual const AtomicString& interfaceName() const override;
- virtual ExecutionContext* executionContext() const override;
- virtual bool hasPendingActivity() const override;
- virtual void stop() override;
- virtual bool dispatchEvent(PassRefPtrWillBeRawPtr<Event>) override;
+ const AtomicString& interfaceName() const override;
+ ExecutionContext* executionContext() const override;
+ bool hasPendingActivity() const override;
+ void stop() override;
+ bool dispatchEvent(PassRefPtrWillBeRawPtr<Event>) override;
double playbackRate() const;
void setPlaybackRate(double);
@@ -177,7 +177,7 @@ public:
return animation1->sequenceNumber() < animation2->sequenceNumber();
}
- virtual bool addEventListener(const AtomicString& eventType, PassRefPtr<EventListener>, bool useCapture = false) override;
+ bool addEventListener(const AtomicString& eventType, PassRefPtr<EventListener>, bool useCapture = false) override;
DECLARE_VIRTUAL_TRACE();
« no previous file with comments | « Source/core/animation/AngleSVGInterpolation.h ('k') | Source/core/animation/AnimationEffectTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698