| Index: ui/views/animation/ink_drop_host_view_unittest.cc
|
| diff --git a/ui/views/animation/ink_drop_host_view_unittest.cc b/ui/views/animation/ink_drop_host_view_unittest.cc
|
| index b0cf311637903f53c57dba09ba1dd58305aa7bfc..367239e74f801aa83d9f1c29180067f85b6813c6 100644
|
| --- a/ui/views/animation/ink_drop_host_view_unittest.cc
|
| +++ b/ui/views/animation/ink_drop_host_view_unittest.cc
|
| @@ -9,20 +9,12 @@
|
| #include "ui/events/event.h"
|
| #include "ui/events/event_constants.h"
|
| #include "ui/events/event_utils.h"
|
| -#include "ui/gfx/color_palette.h"
|
| #include "ui/gfx/geometry/point.h"
|
| #include "ui/gfx/geometry/size.h"
|
| #include "ui/views/animation/test/ink_drop_host_view_test_api.h"
|
|
|
| namespace views {
|
| namespace test {
|
| -
|
| -class InkDropHostViewColor : public InkDropHostView {
|
| - protected:
|
| - SkColor GetInkDropBaseColor() const override {
|
| - return gfx::kPlaceholderColor;
|
| - }
|
| -};
|
|
|
| class InkDropHostViewTest : public testing::Test {
|
| public:
|
| @@ -31,7 +23,7 @@
|
|
|
| protected:
|
| // Test target.
|
| - InkDropHostViewColor host_view_;
|
| + InkDropHostView host_view_;
|
|
|
| // Provides internal access to |host_view_| test target.
|
| InkDropHostViewTestApi test_api_;
|
| @@ -79,66 +71,5 @@
|
| EXPECT_FALSE(test_api_.HasGestureHandler());
|
| }
|
|
|
| -#if defined(OS_WIN)
|
| -TEST_F(InkDropHostViewTest, NoInkDropOnTouchOrGestureEvents) {
|
| - host_view_.SetSize(gfx::Size(20, 20));
|
| -
|
| - test_api_.SetHasInkDrop(true);
|
| -
|
| - // Ensure the target ink drop is in the expected state.
|
| - EXPECT_EQ(test_api_.ink_drop()->GetTargetInkDropState(),
|
| - InkDropState::HIDDEN);
|
| -
|
| - ui::TouchEvent touch_event(ui::ET_TOUCH_PRESSED, gfx::Point(5, 6), 1,
|
| - ui::EventTimeForNow());
|
| -
|
| - test_api_.AnimateInkDrop(InkDropState::ACTION_PENDING, &touch_event);
|
| - EXPECT_EQ(test_api_.ink_drop()->GetTargetInkDropState(),
|
| - InkDropState::HIDDEN);
|
| -
|
| - test_api_.AnimateInkDrop(InkDropState::ALTERNATE_ACTION_PENDING,
|
| - &touch_event);
|
| - EXPECT_EQ(test_api_.ink_drop()->GetTargetInkDropState(),
|
| - InkDropState::HIDDEN);
|
| -
|
| - ui::GestureEvent gesture_event(5.0f, 6.0f, 0, ui::EventTimeForNow(),
|
| - ui::GestureEventDetails(ui::ET_GESTURE_TAP));
|
| -
|
| - test_api_.AnimateInkDrop(InkDropState::ACTION_PENDING, &gesture_event);
|
| - EXPECT_EQ(test_api_.ink_drop()->GetTargetInkDropState(),
|
| - InkDropState::HIDDEN);
|
| -
|
| - test_api_.AnimateInkDrop(InkDropState::ALTERNATE_ACTION_PENDING,
|
| - &gesture_event);
|
| - EXPECT_EQ(test_api_.ink_drop()->GetTargetInkDropState(),
|
| - InkDropState::HIDDEN);
|
| -}
|
| -
|
| -TEST_F(InkDropHostViewTest, DismissInkDropOnTouchOrGestureEvents) {
|
| - host_view_.SetSize(gfx::Size(20, 20));
|
| -
|
| - test_api_.SetHasInkDrop(true);
|
| -
|
| - // Ensure the target ink drop is in the expected state.
|
| - EXPECT_EQ(test_api_.ink_drop()->GetTargetInkDropState(),
|
| - InkDropState::HIDDEN);
|
| -
|
| - ui::MouseEvent mouse_event(ui::ET_MOUSE_PRESSED, gfx::Point(5, 6),
|
| - gfx::Point(5, 6), ui::EventTimeForNow(),
|
| - ui::EF_LEFT_MOUSE_BUTTON, 0);
|
| -
|
| - test_api_.AnimateInkDrop(InkDropState::ACTION_PENDING, &mouse_event);
|
| - EXPECT_EQ(test_api_.ink_drop()->GetTargetInkDropState(),
|
| - InkDropState::ACTION_PENDING);
|
| -
|
| - ui::TouchEvent touch_event(ui::ET_TOUCH_PRESSED, gfx::Point(5, 6), 1,
|
| - ui::EventTimeForNow());
|
| -
|
| - test_api_.AnimateInkDrop(InkDropState::ACTION_TRIGGERED, &touch_event);
|
| - EXPECT_EQ(test_api_.ink_drop()->GetTargetInkDropState(),
|
| - InkDropState::ACTION_TRIGGERED);
|
| -}
|
| -#endif
|
| -
|
| } // namespace test
|
| } // namespace views
|
|
|