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

Side by Side Diff: ui/views/animation/test/ink_drop_ripple_test_api.cc

Issue 1937103003: Rename of InkDropAnimation classes to InkDropRipple. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed test_ink_drop_animation_observer.h from views.gyp and doc update. Created 4 years, 7 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/views/animation/test/ink_drop_animation_test_api.h" 5 #include "ui/views/animation/test/ink_drop_ripple_test_api.h"
6 6
7 namespace views { 7 namespace views {
8 namespace test { 8 namespace test {
9 9
10 InkDropAnimationTestApi::InkDropAnimationTestApi( 10 InkDropRippleTestApi::InkDropRippleTestApi(InkDropRipple* ink_drop_ripple)
11 InkDropAnimation* ink_drop_animation)
12 : ui::test::MultiLayerAnimatorTestController(this), 11 : ui::test::MultiLayerAnimatorTestController(this),
13 ink_drop_animation_(ink_drop_animation) {} 12 ink_drop_ripple_(ink_drop_ripple) {}
14 13
15 InkDropAnimationTestApi::~InkDropAnimationTestApi() {} 14 InkDropRippleTestApi::~InkDropRippleTestApi() {}
16 15
17 std::vector<ui::LayerAnimator*> InkDropAnimationTestApi::GetLayerAnimators() { 16 std::vector<ui::LayerAnimator*> InkDropRippleTestApi::GetLayerAnimators() {
18 return std::vector<ui::LayerAnimator*>(); 17 return std::vector<ui::LayerAnimator*>();
19 } 18 }
20 19
21 } // namespace test 20 } // namespace test
22 } // namespace views 21 } // namespace views
OLDNEW
« no previous file with comments | « ui/views/animation/test/ink_drop_ripple_test_api.h ('k') | ui/views/animation/test/square_ink_drop_animation_test_api.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698