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

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

Issue 1560553002: Framelet Prototype 2016 Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased + Applied Brett's Windows + Fixed security issue 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>
11 11
12 #include <cmath> 12 #include <cmath>
13 13
14 #include "content/browser/renderer_host/input/web_input_event_util.h" 14 #include "content/browser/renderer_host/input/web_input_event_util.h"
15 #include "content/common/input/synthetic_web_input_event_builders.h" 15 #include "content/common/input/synthetic_web_input_event_builders.h"
16 #include "content/common/input/web_input_event_traits.h" 16 #include "content/public/common/input/web_input_event_traits.h"
17 #include "testing/gtest/include/gtest/gtest.h" 17 #include "testing/gtest/include/gtest/gtest.h"
18 #include "ui/events/blink/blink_event_util.h" 18 #include "ui/events/blink/blink_event_util.h"
19 #include "ui/events/event_constants.h" 19 #include "ui/events/event_constants.h"
20 #include "ui/events/gesture_detection/gesture_event_data.h" 20 #include "ui/events/gesture_detection/gesture_event_data.h"
21 #include "ui/events/gesture_detection/motion_event_generic.h" 21 #include "ui/events/gesture_detection/motion_event_generic.h"
22 #include "ui/events/gesture_event_details.h" 22 #include "ui/events/gesture_event_details.h"
23 #include "ui/gfx/geometry/safe_integer_conversions.h" 23 #include "ui/gfx/geometry/safe_integer_conversions.h"
24 24
25 using blink::WebInputEvent; 25 using blink::WebInputEvent;
26 using blink::WebTouchEvent; 26 using blink::WebTouchEvent;
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 127
128 TEST(WebInputEventUtilTest, NoScalingWith1DSF) { 128 TEST(WebInputEventUtilTest, NoScalingWith1DSF) {
129 auto event = 129 auto event =
130 SyntheticWebMouseEventBuilder::Build(blink::WebInputEvent::MouseMove, 130 SyntheticWebMouseEventBuilder::Build(blink::WebInputEvent::MouseMove,
131 10, 10, 0); 131 10, 10, 0);
132 EXPECT_FALSE(ConvertWebInputEventToViewport(event, 1.f)); 132 EXPECT_FALSE(ConvertWebInputEventToViewport(event, 1.f));
133 EXPECT_TRUE(ConvertWebInputEventToViewport(event, 2.f)); 133 EXPECT_TRUE(ConvertWebInputEventToViewport(event, 2.f));
134 } 134 }
135 135
136 } // namespace content 136 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/input/web_input_event_util.cc ('k') | content/browser/renderer_host/ui_events_helper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698