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

Unified Diff: Source/core/inspector/InspectorAnimationAgent.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/inspector/DevToolsHost.cpp ('k') | Source/core/inspector/InspectorApplicationCacheAgent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/inspector/InspectorAnimationAgent.h
diff --git a/Source/core/inspector/InspectorAnimationAgent.h b/Source/core/inspector/InspectorAnimationAgent.h
index 77bdea9b2dfd7c724349a0af57b25edbb27cebaf..01c31973a3243a39d01642f957a5a97fead0727a 100644
--- a/Source/core/inspector/InspectorAnimationAgent.h
+++ b/Source/core/inspector/InspectorAnimationAgent.h
@@ -36,10 +36,10 @@ public:
void didCommitLoadForLocalFrame(LocalFrame*) override;
// Protocol method implementations
- virtual void getPlaybackRate(ErrorString*, double* playbackRate) override;
- virtual void setPlaybackRate(ErrorString*, double playbackRate) override;
- virtual void setCurrentTime(ErrorString*, double currentTime) override;
- virtual void setTiming(ErrorString*, const String& animationId, double duration, double delay) override;
+ void getPlaybackRate(ErrorString*, double* playbackRate) override;
+ void setPlaybackRate(ErrorString*, double playbackRate) override;
+ void setCurrentTime(ErrorString*, double currentTime) override;
+ void setTiming(ErrorString*, const String& animationId, double duration, double delay) override;
// API for InspectorInstrumentation
void didCreateAnimation(Animation*);
@@ -47,7 +47,7 @@ public:
void didClearDocumentOfWindowObject(LocalFrame*);
// API for InspectorFrontend
- virtual void enable(ErrorString*) override;
+ void enable(ErrorString*) override;
// Methods for other agents to use.
Animation* assertAnimation(ErrorString*, const String& id);
« no previous file with comments | « Source/core/inspector/DevToolsHost.cpp ('k') | Source/core/inspector/InspectorApplicationCacheAgent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698