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

Unified Diff: third_party/WebKit/Source/platform/scroll/ScrollAnimatorBase.h

Issue 2926553004: Remove trailing semicolon at the end of a method definition (Closed)
Patch Set: rebase Created 3 years, 6 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
Index: third_party/WebKit/Source/platform/scroll/ScrollAnimatorBase.h
diff --git a/third_party/WebKit/Source/platform/scroll/ScrollAnimatorBase.h b/third_party/WebKit/Source/platform/scroll/ScrollAnimatorBase.h
index 40a972dc056fd7ac47127ae5da19455d0e44f86b..4f046839dc71a8e2e92f66707c78dfb458ca8a32 100644
--- a/third_party/WebKit/Source/platform/scroll/ScrollAnimatorBase.h
+++ b/third_party/WebKit/Source/platform/scroll/ScrollAnimatorBase.h
@@ -74,14 +74,14 @@ class PLATFORM_EXPORT ScrollAnimatorBase
ScrollableArea* GetScrollableArea() const override {
return scrollable_area_;
}
- void TickAnimation(double monotonic_time) override{};
+ void TickAnimation(double monotonic_time) override {}
void CancelAnimation() override {}
void TakeOverCompositorAnimation() override {}
- void UpdateCompositorAnimations() override{};
- void NotifyCompositorAnimationFinished(int group_id) override{};
- void NotifyCompositorAnimationAborted(int group_id) override{};
+ void UpdateCompositorAnimations() override {}
+ void NotifyCompositorAnimationFinished(int group_id) override {}
+ void NotifyCompositorAnimationAborted(int group_id) override {}
void LayerForCompositedScrollingDidChange(
- CompositorAnimationTimeline*) override{};
+ CompositorAnimationTimeline*) override {}
virtual void ContentAreaWillPaint() const {}
virtual void MouseEnteredContentArea() const {}

Powered by Google App Engine
This is Rietveld 408576698