Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(978)

Unified Diff: content/common/input/event_with_latency_info_unittest.cc

Issue 2573073003: Collapse the API surface on WebInputEvent via accessor functions. (Closed)
Patch Set: Fix nits Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/common/input/event_with_latency_info_unittest.cc
diff --git a/content/common/input/event_with_latency_info_unittest.cc b/content/common/input/event_with_latency_info_unittest.cc
index e319716cab01fe490dfaeb44c74ca31d5a058339..7afd3a3c29eebb41f41f685beb270e524c4f6623 100644
--- a/content/common/input/event_with_latency_info_unittest.cc
+++ b/content/common/input/event_with_latency_info_unittest.cc
@@ -69,7 +69,7 @@ TEST_F(EventWithLatencyInfoTest, TimestampCoalescingForMouseEvent) {
ASSERT_TRUE(mouse_0.CanCoalesceWith(mouse_1));
mouse_0.CoalesceWith(mouse_1);
// Coalescing WebMouseEvent preserves newer timestamp.
- EXPECT_EQ(10.0, mouse_0.event.timeStampSeconds);
+ EXPECT_EQ(10.0, mouse_0.event.timeStampSeconds());
}
TEST_F(EventWithLatencyInfoTest, TimestampCoalescingForMouseWheelEvent) {
@@ -79,7 +79,7 @@ TEST_F(EventWithLatencyInfoTest, TimestampCoalescingForMouseWheelEvent) {
ASSERT_TRUE(mouse_wheel_0.CanCoalesceWith(mouse_wheel_1));
mouse_wheel_0.CoalesceWith(mouse_wheel_1);
// Coalescing WebMouseWheelEvent preserves newer timestamp.
- EXPECT_EQ(10.0, mouse_wheel_0.event.timeStampSeconds);
+ EXPECT_EQ(10.0, mouse_wheel_0.event.timeStampSeconds());
}
TEST_F(EventWithLatencyInfoTest, TimestampCoalescingForTouchEvent) {
@@ -91,7 +91,7 @@ TEST_F(EventWithLatencyInfoTest, TimestampCoalescingForTouchEvent) {
ASSERT_TRUE(touch_0.CanCoalesceWith(touch_1));
touch_0.CoalesceWith(touch_1);
// Coalescing WebTouchEvent preserves newer timestamp.
- EXPECT_EQ(10.0, touch_0.event.timeStampSeconds);
+ EXPECT_EQ(10.0, touch_0.event.timeStampSeconds());
}
TEST_F(EventWithLatencyInfoTest, TimestampCoalescingForGestureEvent) {
@@ -103,7 +103,7 @@ TEST_F(EventWithLatencyInfoTest, TimestampCoalescingForGestureEvent) {
ASSERT_TRUE(scroll_0.CanCoalesceWith(scroll_1));
scroll_0.CoalesceWith(scroll_1);
// Coalescing WebGestureEvent preserves newer timestamp.
- EXPECT_EQ(10.0, scroll_0.event.timeStampSeconds);
+ EXPECT_EQ(10.0, scroll_0.event.timeStampSeconds());
}
TEST_F(EventWithLatencyInfoTest, LatencyInfoCoalescing) {
@@ -317,7 +317,7 @@ TEST_F(EventWithLatencyInfoTest, WebMouseWheelEventCoalescing) {
mouse_wheel_1.event.y = 2;
MouseWheelEventWithLatencyInfo mouse_wheel_1_copy = mouse_wheel_1;
EXPECT_TRUE(CanCoalesce(mouse_wheel_0, mouse_wheel_1));
- EXPECT_EQ(mouse_wheel_0.event.modifiers, mouse_wheel_1.event.modifiers);
+ EXPECT_EQ(mouse_wheel_0.event.modifiers(), mouse_wheel_1.event.modifiers());
EXPECT_EQ(mouse_wheel_0.event.scrollByPage, mouse_wheel_1.event.scrollByPage);
EXPECT_EQ(mouse_wheel_0.event.phase, mouse_wheel_1.event.phase);
EXPECT_EQ(mouse_wheel_0.event.momentumPhase,
@@ -357,7 +357,7 @@ TEST_F(EventWithLatencyInfoTest, TimestampCoalescing) {
EXPECT_TRUE(CanCoalesce(mouse_wheel_0, mouse_wheel_1));
Coalesce(mouse_wheel_1, &mouse_wheel_0);
- EXPECT_EQ(10.0, mouse_wheel_0.event.timeStampSeconds);
+ EXPECT_EQ(10.0, mouse_wheel_0.event.timeStampSeconds());
}
} // namespace
« no previous file with comments | « content/common/input/event_with_latency_info.cc ('k') | content/common/input/gesture_event_stream_validator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698