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

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

Issue 642483003: Use a valid WebMouseWheelEvent in stringification test (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « no previous file | tools/valgrind/memcheck/suppressions.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/input/web_input_event_traits_unittest.cc
diff --git a/content/common/input/web_input_event_traits_unittest.cc b/content/common/input/web_input_event_traits_unittest.cc
index 6e98edc445fd0d3f2e026961e222d740939aafef..7a7cb7ff8b3e878eec275c8445494fbb8a6aefa4 100644
--- a/content/common/input/web_input_event_traits_unittest.cc
+++ b/content/common/input/web_input_event_traits_unittest.cc
@@ -172,7 +172,7 @@ TEST_F(WebInputEventTraitsTest, ToString) {
mouse.type = WebInputEvent::MouseMove;
EXPECT_FALSE(WebInputEventTraits::ToString(mouse).empty());
- WebMouseEvent mouse_wheel;
+ WebMouseWheelEvent mouse_wheel;
mouse_wheel.type = WebInputEvent::MouseWheel;
EXPECT_FALSE(WebInputEventTraits::ToString(mouse_wheel).empty());
« no previous file with comments | « no previous file | tools/valgrind/memcheck/suppressions.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698