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

Side by Side Diff: ui/events/blink/web_input_event_traits_unittest.cc

Issue 2240983003: Move |ScopedWebInputEvent| and |WebInputEventTraits| from |content::| to "ui/events/blink" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move |ScopedWebInputEvent| and |WebInputEventTraits| from |content::| to |ui::| Created 4 years, 4 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 #include "content/common/input/web_input_event_traits.h" 5 #include "ui/events/blink/web_input_event_traits.h"
6 6
7 #include "testing/gtest/include/gtest/gtest.h" 7 #include "testing/gtest/include/gtest/gtest.h"
8 #include "third_party/WebKit/public/web/WebInputEvent.h" 8 #include "third_party/WebKit/public/web/WebInputEvent.h"
9 9
10 using blink::WebGestureEvent; 10 using blink::WebGestureEvent;
11 using blink::WebInputEvent; 11 using blink::WebInputEvent;
12 using blink::WebKeyboardEvent; 12 using blink::WebKeyboardEvent;
13 using blink::WebMouseEvent; 13 using blink::WebMouseEvent;
14 using blink::WebMouseWheelEvent; 14 using blink::WebMouseWheelEvent;
15 using blink::WebTouchEvent; 15 using blink::WebTouchEvent;
16 16
17 namespace content { 17 namespace ui {
18 namespace { 18 namespace {
19 19
20 using WebInputEventTraitsTest = testing::Test; 20 using WebInputEventTraitsTest = testing::Test;
21 21
22 // Very basic smoke test to ensure stringification doesn't explode. 22 // Very basic smoke test to ensure stringification doesn't explode.
23 TEST_F(WebInputEventTraitsTest, ToString) { 23 TEST_F(WebInputEventTraitsTest, ToString) {
24 WebKeyboardEvent key; 24 WebKeyboardEvent key;
25 key.type = WebInputEvent::RawKeyDown; 25 key.type = WebInputEvent::RawKeyDown;
26 EXPECT_FALSE(WebInputEventTraits::ToString(key).empty()); 26 EXPECT_FALSE(WebInputEventTraits::ToString(key).empty());
27 27
(...skipping 11 matching lines...) Expand all
39 gesture.y = 1; 39 gesture.y = 1;
40 EXPECT_FALSE(WebInputEventTraits::ToString(gesture).empty()); 40 EXPECT_FALSE(WebInputEventTraits::ToString(gesture).empty());
41 41
42 WebTouchEvent touch; 42 WebTouchEvent touch;
43 touch.type = WebInputEvent::TouchStart; 43 touch.type = WebInputEvent::TouchStart;
44 touch.touchesLength = 1; 44 touch.touchesLength = 1;
45 EXPECT_FALSE(WebInputEventTraits::ToString(touch).empty()); 45 EXPECT_FALSE(WebInputEventTraits::ToString(touch).empty());
46 } 46 }
47 47
48 } // namespace 48 } // namespace
49 } // namespace content 49 } // namespace ui
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698