summaryrefslogtreecommitdiffstats
path: root/ui/surface
diff options
context:
space:
mode:
Diffstat (limited to 'ui/surface')
-rw-r--r--ui/surface/transport_dib.h5
-rw-r--r--ui/surface/transport_dib_gtk.cc2
2 files changed, 4 insertions, 3 deletions
diff --git a/ui/surface/transport_dib.h b/ui/surface/transport_dib.h
index 1d5410d..7ec7bb8 100644
--- a/ui/surface/transport_dib.h
+++ b/ui/surface/transport_dib.h
@@ -16,6 +16,7 @@
#include <windows.h>
#elif defined(TOOLKIT_GTK)
#include "ui/base/x/x11_util.h"
+#include "ui/gfx/x/x11_types.h"
#endif
class SkCanvas;
@@ -189,7 +190,7 @@ class SURFACE_EXPORT TransportDIB {
#if defined(TOOLKIT_GTK)
// Map the shared memory into the X server and return an id for the shared
// segment.
- XID MapToX(Display* connection);
+ XID MapToX(XDisplay* connection);
void IncreaseInFlightCounter() { inflight_counter_++; }
// Decreases the inflight counter, and deletes the transport DIB if it is
@@ -211,7 +212,7 @@ class SURFACE_EXPORT TransportDIB {
Id key_; // SysV shared memory id
void* address_; // mapped address
XSharedMemoryId x_shm_; // X id for the shared segment
- Display* display_; // connection to the X server
+ XDisplay* display_; // connection to the X server
size_t inflight_counter_; // How many requests to the X server are in flight
bool detached_; // If true, delete the transport DIB when it is idle
#else
diff --git a/ui/surface/transport_dib_gtk.cc b/ui/surface/transport_dib_gtk.cc
index 31f6513..61ec624 100644
--- a/ui/surface/transport_dib_gtk.cc
+++ b/ui/surface/transport_dib_gtk.cc
@@ -133,7 +133,7 @@ TransportDIB::Handle TransportDIB::handle() const {
return key_.shmkey;
}
-XID TransportDIB::MapToX(Display* display) {
+XID TransportDIB::MapToX(XDisplay* display) {
if (!x_shm_) {
x_shm_ = ui::AttachSharedMemory(display, key_.shmkey);
display_ = display;