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

Side by Side Diff: base/message_loop/message_pump_x11.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 | « base/message_loop/message_pump_x11.h ('k') | chrome/browser/ui/libgtk2ui/gtk2_event_loop.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "base/message_loop/message_pump_x11.h"
6
7 #include <glib.h>
8 #include <X11/X.h>
9 #include <X11/extensions/XInput2.h>
10 #include <X11/XKBlib.h>
11
12 #include "base/basictypes.h"
13 #include "base/message_loop/message_loop.h"
14
15 namespace base {
16
17 namespace {
18
19 // The connection is essentially a global that's accessed through a static
20 // method and destroyed whenever ~MessagePumpX11() is called. We do this
21 // for historical reasons so user code can call
22 // MessagePumpForUI::GetDefaultXDisplay() where MessagePumpForUI is a typedef
23 // to whatever type in the current build.
24 //
25 // TODO(erg): This can be changed to something more sane like
26 // MessagePumpX11::Current()->display() once MessagePumpGtk goes away.
27 Display* g_xdisplay = NULL;
28
29 } // namespace
30
31 MessagePumpX11::MessagePumpX11() : MessagePumpGlib() {
32 GetDefaultXDisplay();
33 }
34
35 MessagePumpX11::~MessagePumpX11() {
36 if (g_xdisplay) {
37 XCloseDisplay(g_xdisplay);
38 g_xdisplay = NULL;
39 }
40 }
41
42 // static
43 Display* MessagePumpX11::GetDefaultXDisplay() {
44 if (!g_xdisplay)
45 g_xdisplay = XOpenDisplay(NULL);
46 return g_xdisplay;
47 }
48
49 #if defined(TOOLKIT_GTK)
50 // static
51 MessagePumpX11* MessagePumpX11::Current() {
52 MessageLoop* loop = MessageLoop::current();
53 return static_cast<MessagePumpX11*>(loop->pump_gpu());
54 }
55 #else
56 // static
57 MessagePumpX11* MessagePumpX11::Current() {
58 MessageLoopForUI* loop = MessageLoopForUI::current();
59 return static_cast<MessagePumpX11*>(loop->pump_ui());
60 }
61 #endif
62
63 } // namespace base
OLDNEW
« no previous file with comments | « base/message_loop/message_pump_x11.h ('k') | chrome/browser/ui/libgtk2ui/gtk2_event_loop.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698