| 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(const InkDropState& ink_drop_state, ::std::ostream* os) { |
| 14 *os << ToString(ink_drop_state); |
| 15 } |
| 16 |
| 17 void PrintTo(const InkDropHover::AnimationType& animation_type, |
| 18 ::std::ostream* os) { |
| 19 *os << ToString(animation_type); |
| 20 } |
| 21 |
| 22 void PrintTo(const InkDropAnimationEndedReason& reason, ::std::ostream* os) { |
| 23 *os << ToString(reason); |
| 24 } |
| 25 |
| 26 } // namespace views |
| OLD | NEW |