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

Unified Diff: ash/wm/window_animations_unittest.cc

Issue 645513008: Standardize usage of virtual/override/final specifiers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.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 | « ash/wm/window_animations.cc ('k') | ash/wm/window_cycle_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/wm/window_animations_unittest.cc
diff --git a/ash/wm/window_animations_unittest.cc b/ash/wm/window_animations_unittest.cc
index 575e9e25f03d404ced6283fe4be7c36071c33d8a..d1c2d924e104a4a0b3fca1b4e4f434095d4dec78 100644
--- a/ash/wm/window_animations_unittest.cc
+++ b/ash/wm/window_animations_unittest.cc
@@ -25,9 +25,7 @@ class WindowAnimationsTest : public ash::test::AshTestBase {
public:
WindowAnimationsTest() {}
- virtual void TearDown() override {
- AshTestBase::TearDown();
- }
+ void TearDown() override { AshTestBase::TearDown(); }
private:
DISALLOW_COPY_AND_ASSIGN(WindowAnimationsTest);
@@ -47,15 +45,13 @@ class MinimizeAnimationObserver : public ui::LayerAnimationObserver {
protected:
// ui::LayerAnimationObserver:
- virtual void OnLayerAnimationScheduled(
+ void OnLayerAnimationScheduled(
ui::LayerAnimationSequence* sequence) override {
duration_ = animator_->GetTransitionDuration();
animator_->RemoveObserver(this);
}
- virtual void OnLayerAnimationEnded(
- ui::LayerAnimationSequence* sequence) override {}
- virtual void OnLayerAnimationAborted(
- ui::LayerAnimationSequence* sequence) override {}
+ void OnLayerAnimationEnded(ui::LayerAnimationSequence* sequence) override {}
+ void OnLayerAnimationAborted(ui::LayerAnimationSequence* sequence) override {}
private:
ui::LayerAnimator* animator_;
« no previous file with comments | « ash/wm/window_animations.cc ('k') | ash/wm/window_cycle_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698