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: ui/events/x/events_x.cc

Issue 235043005: x11: Remove X11 message-pump. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: tot-merge Created 6 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « ui/display/x11/edid_parser_x11.cc ('k') | ui/gfx/gfx.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 12
13 #include "base/logging.h" 13 #include "base/logging.h"
14 #include "base/memory/singleton.h" 14 #include "base/memory/singleton.h"
15 #include "base/message_loop/message_pump_x11.h"
16 #include "ui/events/event_utils.h" 15 #include "ui/events/event_utils.h"
17 #include "ui/events/keycodes/keyboard_code_conversion_x.h" 16 #include "ui/events/keycodes/keyboard_code_conversion_x.h"
18 #include "ui/events/x/device_data_manager.h" 17 #include "ui/events/x/device_data_manager.h"
19 #include "ui/events/x/device_list_cache_x.h" 18 #include "ui/events/x/device_list_cache_x.h"
20 #include "ui/events/x/touch_factory_x11.h" 19 #include "ui/events/x/touch_factory_x11.h"
21 #include "ui/gfx/display.h" 20 #include "ui/gfx/display.h"
22 #include "ui/gfx/point.h" 21 #include "ui/gfx/point.h"
23 #include "ui/gfx/rect.h" 22 #include "ui/gfx/rect.h"
24 #include "ui/gfx/screen.h" 23 #include "ui/gfx/screen.h"
25 #include "ui/gfx/x/x11_atom_cache.h" 24 #include "ui/gfx/x/x11_atom_cache.h"
(...skipping 639 matching lines...) Expand 10 before | Expand all | Expand 10 after
665 DeviceDataManager::GetInstance()->GetGestureTimes( 664 DeviceDataManager::GetInstance()->GetGestureTimes(
666 native_event, start_time, end_time); 665 native_event, start_time, end_time);
667 return true; 666 return true;
668 } 667 }
669 668
670 bool IsTouchpadEvent(const base::NativeEvent& event) { 669 bool IsTouchpadEvent(const base::NativeEvent& event) {
671 return DeviceDataManager::GetInstance()->IsTouchpadXInputEvent(event); 670 return DeviceDataManager::GetInstance()->IsTouchpadXInputEvent(event);
672 } 671 }
673 672
674 } // namespace ui 673 } // namespace ui
OLDNEW
« no previous file with comments | « ui/display/x11/edid_parser_x11.cc ('k') | ui/gfx/gfx.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698