summaryrefslogtreecommitdiffstats
path: root/client/display_channel.h
diff options
context:
space:
mode:
authorYonit Halperin <yhalperi@redhat.com>2009-10-20 11:18:56 +0200
committerYaniv Kamay <ykamay@redhat.com>2010-01-03 17:18:37 +0200
commit219105794bd42dfd36e303ca73f1a546903e1846 (patch)
tree686b1959b0fd4576da324713290d7d913bf3b90f /client/display_channel.h
parent78f8d4b9e8fdb09055c04e82e30b6a0290795339 (diff)
downloadspice-219105794bd42dfd36e303ca73f1a546903e1846.tar.gz
spice-219105794bd42dfd36e303ca73f1a546903e1846.tar.xz
spice-219105794bd42dfd36e303ca73f1a546903e1846.zip
spice client: Transfer all channels run loop from EventsLoop class to ProcessLoop class
Diffstat (limited to 'client/display_channel.h')
-rw-r--r--client/display_channel.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/client/display_channel.h b/client/display_channel.h
index 894c604f..59dc6a61 100644
--- a/client/display_channel.h
+++ b/client/display_channel.h
@@ -25,7 +25,7 @@
#include "cairo.h"
#include "cache.hpp"
#include "screen_layer.h"
-#include "events_loop.h"
+#include "process_loop.h"
#ifdef USE_OGL
#include "red_pixmap_gl.h"
#endif
@@ -36,7 +36,7 @@ class ChannelFactory;
class VideoStream;
class DisplayChannel;
-class StreamsTrigger: public EventsLoop::Trigger {
+class StreamsTrigger: public EventSources::Trigger {
public:
StreamsTrigger(DisplayChannel& channel);
@@ -47,7 +47,7 @@ private:
};
#ifdef USE_OGL
-class GLInterruptRecreate: public EventsLoop::Trigger {
+class GLInterruptRecreate: public EventSources::Trigger {
public:
GLInterruptRecreate(DisplayChannel& channel);
virtual void trigger();
@@ -60,7 +60,7 @@ private:
};
#endif
-class InterruptUpdate: public EventsLoop::Trigger {
+class InterruptUpdate: public EventSources::Trigger {
public:
InterruptUpdate(DisplayChannel& channel);