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

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

Issue 2340993002: Tweaks to "Allow InkDropRipple to co-exist with highlight or not exist at all." (Closed)
Patch Set: Fixed InkDropImplTest.HighlightCanExistWithoutRipple. Created 4 years, 3 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
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "ui/views/animation/test/empty_ink_drop_ripple_test_api.h"
6
7 namespace views {
8 namespace test {
9
10 EmptyInkDropRippleTestApi::EmptyInkDropRippleTestApi(
11 EmptyInkDropRipple* ink_drop_ripple)
12 : InkDropRippleTestApi(ink_drop_ripple) {}
13
14 EmptyInkDropRippleTestApi::~EmptyInkDropRippleTestApi() {}
15
16 float EmptyInkDropRippleTestApi::GetCurrentOpacity() const {
17 return 0;
18 }
19
20 std::vector<ui::LayerAnimator*> EmptyInkDropRippleTestApi::GetLayerAnimators() {
21 return std::vector<ui::LayerAnimator*>();
22 }
23
24 } // namespace test
25 } // namespace views
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698