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

Side by Side Diff: content/browser/renderer_host/input/web_input_event_util_unittest.cc

Issue 1609193002: [UseZoomForDSF] Alwatys use DIP coordinates in pepper plugin (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Needed on Windows to get |M_PI| from <cmath>. 5 // Needed on Windows to get |M_PI| from <cmath>.
6 #ifdef _WIN32 6 #ifdef _WIN32
7 #define _USE_MATH_DEFINES 7 #define _USE_MATH_DEFINES
8 #endif 8 #endif
9 9
10 #include <stddef.h> 10 #include <stddef.h>
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 EXPECT_EQ(gfx::ToFlooredInt(pos.x()), web_event.x); 118 EXPECT_EQ(gfx::ToFlooredInt(pos.x()), web_event.x);
119 EXPECT_EQ(gfx::ToFlooredInt(pos.y()), web_event.y); 119 EXPECT_EQ(gfx::ToFlooredInt(pos.y()), web_event.y);
120 EXPECT_EQ(gfx::ToFlooredInt(raw_pos.x()), web_event.globalX); 120 EXPECT_EQ(gfx::ToFlooredInt(raw_pos.x()), web_event.globalX);
121 EXPECT_EQ(gfx::ToFlooredInt(raw_pos.y()), web_event.globalY); 121 EXPECT_EQ(gfx::ToFlooredInt(raw_pos.y()), web_event.globalY);
122 EXPECT_EQ(blink::WebGestureDeviceTouchscreen, web_event.sourceDevice); 122 EXPECT_EQ(blink::WebGestureDeviceTouchscreen, web_event.sourceDevice);
123 EXPECT_EQ(delta.x(), web_event.data.scrollUpdate.deltaX); 123 EXPECT_EQ(delta.x(), web_event.data.scrollUpdate.deltaX);
124 EXPECT_EQ(delta.y(), web_event.data.scrollUpdate.deltaY); 124 EXPECT_EQ(delta.y(), web_event.data.scrollUpdate.deltaY);
125 EXPECT_TRUE(web_event.data.scrollUpdate.previousUpdateInSequencePrevented); 125 EXPECT_TRUE(web_event.data.scrollUpdate.previousUpdateInSequencePrevented);
126 } 126 }
127 127
128 TEST(WebInputEventUtilTest, NoScalingWith1DSF) {
129 auto event =
130 SyntheticWebMouseEventBuilder::Build(blink::WebInputEvent::MouseMove,
131 10, 10, 0);
132 EXPECT_FALSE(ConvertWebInputEventToViewport(event, 1.f));
133 EXPECT_TRUE(ConvertWebInputEventToViewport(event, 2.f));
134 }
135
136 } // namespace content 128 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698