gtk: Fix lack of x11_util implementations.
This commit is contained in:
parent
f4b6ca70a9
commit
1f99a97544
2 changed files with 26 additions and 0 deletions
1
atom.gyp
1
atom.gyp
|
@ -140,6 +140,7 @@
|
|||
'atom/browser/ui/gtk/status_icon.h',
|
||||
'atom/browser/ui/gtk/work_area_watcher_x.cc',
|
||||
'atom/browser/ui/gtk/work_area_watcher_x.h',
|
||||
'atom/browser/ui/gtk/x11_util.cc',
|
||||
'atom/browser/ui/message_box.h',
|
||||
'atom/browser/ui/message_box_gtk.cc',
|
||||
'atom/browser/ui/message_box_mac.mm',
|
||||
|
|
25
atom/browser/ui/gtk/x11_util.cc
Normal file
25
atom/browser/ui/gtk/x11_util.cc
Normal file
|
@ -0,0 +1,25 @@
|
|||
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style license that can be
|
||||
// found in the LICENSE file.
|
||||
|
||||
// This file defines utility functions for X11 (Linux only). This code has been
|
||||
// ported from XCB since we can't use XCB on Ubuntu while its 32-bit support
|
||||
// remains woefully incomplete.
|
||||
|
||||
#include "ui/base/x/x11_util.h"
|
||||
|
||||
#include "ui/gfx/gdk_compat.h"
|
||||
|
||||
namespace ui {
|
||||
|
||||
Atom GetAtom(const char* name) {
|
||||
#if defined(TOOLKIT_GTK)
|
||||
return gdk_x11_get_xatom_by_name_for_display(
|
||||
gdk_display_get_default(), name);
|
||||
#else
|
||||
// TODO(derat): Cache atoms to avoid round-trips to the server.
|
||||
return XInternAtom(gfx::GetXDisplay(), name, false);
|
||||
#endif
|
||||
}
|
||||
|
||||
} // namespace ui
|
Loading…
Reference in a new issue