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

Side by Side Diff: ui/events/x/events_x.cc

Issue 392013005: [#1] Delete reduntdant 19 header files in ui/gfx (8 of 19 by this) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sorted includes Created 6 years, 5 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 "ui/events/event_constants.h" 5 #include "ui/events/event_constants.h"
6 6
7 #include <cmath> 7 #include <cmath>
8 #include <string.h> 8 #include <string.h>
9 #include <X11/extensions/XInput.h> 9 #include <X11/extensions/XInput.h>
10 #include <X11/extensions/XInput2.h> 10 #include <X11/extensions/XInput2.h>
11 #include <X11/Xlib.h> 11 #include <X11/Xlib.h>
12 #include <X11/Xutil.h> 12 #include <X11/Xutil.h>
13 #include <X11/XKBlib.h> 13 #include <X11/XKBlib.h>
14 14
15 #include "base/logging.h" 15 #include "base/logging.h"
16 #include "base/memory/singleton.h" 16 #include "base/memory/singleton.h"
17 #include "ui/events/event_utils.h" 17 #include "ui/events/event_utils.h"
18 #include "ui/events/keycodes/keyboard_code_conversion_x.h" 18 #include "ui/events/keycodes/keyboard_code_conversion_x.h"
19 #include "ui/events/x/device_data_manager_x11.h" 19 #include "ui/events/x/device_data_manager_x11.h"
20 #include "ui/events/x/device_list_cache_x.h" 20 #include "ui/events/x/device_list_cache_x.h"
21 #include "ui/events/x/touch_factory_x11.h" 21 #include "ui/events/x/touch_factory_x11.h"
22 #include "ui/gfx/display.h" 22 #include "ui/gfx/display.h"
23 #include "ui/gfx/point.h" 23 #include "ui/gfx/geometry/point.h"
24 #include "ui/gfx/rect.h" 24 #include "ui/gfx/rect.h"
25 #include "ui/gfx/screen.h" 25 #include "ui/gfx/screen.h"
26 #include "ui/gfx/x/x11_atom_cache.h" 26 #include "ui/gfx/x/x11_atom_cache.h"
27 #include "ui/gfx/x/x11_types.h" 27 #include "ui/gfx/x/x11_types.h"
28 28
29 namespace { 29 namespace {
30 30
31 // Scroll amount for each wheelscroll event. 53 is also the value used for GTK+. 31 // Scroll amount for each wheelscroll event. 53 is also the value used for GTK+.
32 const int kWheelScrollAmount = 53; 32 const int kWheelScrollAmount = 53;
33 33
(...skipping 768 matching lines...) Expand 10 before | Expand all | Expand 10 after
802 start_time = &start_time_; 802 start_time = &start_time_;
803 if (!end_time) 803 if (!end_time)
804 end_time = &end_time_; 804 end_time = &end_time_;
805 805
806 DeviceDataManagerX11::GetInstance()->GetGestureTimes( 806 DeviceDataManagerX11::GetInstance()->GetGestureTimes(
807 native_event, start_time, end_time); 807 native_event, start_time, end_time);
808 return true; 808 return true;
809 } 809 }
810 810
811 } // namespace ui 811 } // namespace ui
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698