Commit 50fc7228 authored by Alan Cutter's avatar Alan Cutter Committed by Commit Bot

Fix warning for GestureEventQueueWithSourceTest

This CL removes the uninstantiated test suite
GestureEventQueueWithSourceTest to fix the warning in content_unittests:
The following parameterized test case is not instantiated: UninstantiatedParamaterizedTestSuite<GestureEventQueueWithSourceTest>

Bug: 1045846
Change-Id: I82146898d77e36240b0e26a0dcf551228435cf35
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2143874
Commit-Queue: Alan Cutter <alancutter@chromium.org>
Reviewed-by: default avatarDavid Bokan <bokan@chromium.org>
Cr-Commit-Position: refs/heads/master@{#758098}
parent 67f851b8
......@@ -242,11 +242,6 @@ class GestureEventQueueTest : public testing::Test,
#endif
};
// This is for tests that are to be run for all source devices.
class GestureEventQueueWithSourceTest
: public GestureEventQueueTest,
public testing::WithParamInterface<WebGestureDevice> {};
class GestureEventQueueWithCompositorEventQueueTest
: public GestureEventQueueTest {};
......@@ -280,11 +275,6 @@ TEST_F(GestureEventQueueTest, SyncAckQueuesEvent) {
EXPECT_EQ(1U, GetAndResetAckedGestureEventCount());
}
INSTANTIATE_TEST_SUITE_P(AllSources,
GestureEventQueueWithSourceTest,
testing::Values(blink::WebGestureDevice::kTouchscreen,
blink::WebGestureDevice::kTouchpad));
// Test that a GestureScrollEnd is deferred during the debounce interval,
// that Scrolls are not and that the deferred events are sent after that
// timer fires.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment