| OLD | NEW |
| (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 <ostream> |
| 6 |
| 7 #include "ui/views/animation/ink_drop_animation_ended_reason.h" |
| 8 #include "ui/views/animation/ink_drop_hover.h" |
| 9 #include "ui/views/animation/ink_drop_state.h" |
| 10 |
| 11 namespace views { |
| 12 |
| 13 void PrintTo(InkDropState ink_drop_state, ::std::ostream* os) { |
| 14 *os << ToString(ink_drop_state); |
| 15 } |
| 16 |
| 17 void PrintTo(InkDropHover::AnimationType animation_type, ::std::ostream* os) { |
| 18 *os << ToString(animation_type); |
| 19 } |
| 20 |
| 21 void PrintTo(InkDropAnimationEndedReason reason, ::std::ostream* os) { |
| 22 *os << ToString(reason); |
| 23 } |
| 24 |
| 25 } // namespace views |
| OLD | NEW |