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

Side by Side Diff: content/browser/renderer_host/web_input_event_aura_unittest.cc

Issue 1136503003: Consolidate ui/events/keycodes/dom[34]/ into .../dom/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 7 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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/browser/renderer_host/web_input_event_aura.h" 5 #include "content/browser/renderer_host/web_input_event_aura.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "testing/gtest/include/gtest/gtest.h" 8 #include "testing/gtest/include/gtest/gtest.h"
9 #include "ui/events/event.h" 9 #include "ui/events/event.h"
10 #include "ui/events/event_utils.h" 10 #include "ui/events/event_utils.h"
11 #include "ui/events/keycodes/dom3/dom_code.h" 11 #include "ui/events/keycodes/dom/dom_code.h"
12 #include "ui/events/keycodes/dom3/dom_key.h" 12 #include "ui/events/keycodes/dom/dom_key.h"
13 #include "ui/events/keycodes/dom4/keycode_converter.h" 13 #include "ui/events/keycodes/dom/keycode_converter.h"
14 14
15 #if defined(USE_X11) 15 #if defined(USE_X11)
16 #include <X11/keysym.h> 16 #include <X11/keysym.h>
17 #include <X11/Xlib.h> 17 #include <X11/Xlib.h>
18 #include "ui/events/test/events_test_utils_x11.h" 18 #include "ui/events/test/events_test_utils_x11.h"
19 #include "ui/gfx/x/x11_types.h" 19 #include "ui/gfx/x/x11_types.h"
20 #endif 20 #endif
21 21
22 namespace content { 22 namespace content {
23 23
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 << "{dom_code:" 209 << "{dom_code:"
210 << ui::KeycodeConverter::DomCodeToCodeString(test_case.dom_code) 210 << ui::KeycodeConverter::DomCodeToCodeString(test_case.dom_code)
211 << ", ui_keycode:" << test_case.ui_keycode 211 << ", ui_keycode:" << test_case.ui_keycode
212 << ", x_keysym:" << test_case.x_keysym 212 << ", x_keysym:" << test_case.x_keysym
213 << "}, expect: " << test_case.expected_result; 213 << "}, expect: " << test_case.expected_result;
214 } 214 }
215 #endif 215 #endif
216 } 216 }
217 217
218 } // namespace content 218 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/web_input_event_aura.cc ('k') | content/child/blink_platform_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698