| Index: ui/views/animation/ink_drop_hover.cc
|
| diff --git a/ui/views/animation/ink_drop_hover.cc b/ui/views/animation/ink_drop_hover.cc
|
| index af98e614f5978c893fd276d1663a8fe4ff5c6ede..24ad3844eb187b27e0698010786de27c7e841e0e 100644
|
| --- a/ui/views/animation/ink_drop_hover.cc
|
| +++ b/ui/views/animation/ink_drop_hover.cc
|
| @@ -24,6 +24,18 @@ const float kHiddenOpacity = 0.0f;
|
|
|
| } // namespace
|
|
|
| +std::string ToString(InkDropHover::AnimationType animation_type) {
|
| + switch (animation_type) {
|
| + case InkDropHover::FADE_IN:
|
| + return std::string("FADE_IN");
|
| + case InkDropHover::FADE_OUT:
|
| + return std::string("FADE_OUT");
|
| + }
|
| + NOTREACHED()
|
| + << "Should never be reached but is necessary for some compilers.";
|
| + return std::string("UNKNOWN");
|
| +}
|
| +
|
| InkDropHover::InkDropHover(const gfx::Size& size,
|
| int corner_radius,
|
| const gfx::Point& center_point,
|
|
|