aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMs2ger <Ms2ger@gmail.com>2016-05-20 14:39:42 +0200
committerMs2ger <Ms2ger@gmail.com>2016-05-20 14:39:42 +0200
commit4f623dead3a944a546b54198496ba955c4233fda (patch)
tree9ee0f29d225d724d1a94bb55c8fe5e7d0acb3ce7
parent8caaf196e1fe57b27041b74512ca4f58bc62f45b (diff)
downloadservo-4f623dead3a944a546b54198496ba955c4233fda.tar.gz
servo-4f623dead3a944a546b54198496ba955c4233fda.zip
Remove unsafe Send implementation for GlutinCompositorProxy.
Send is now implemented for glutin::WindowProxy.
-rw-r--r--ports/glutin/window.rs3
1 files changed, 0 insertions, 3 deletions
diff --git a/ports/glutin/window.rs b/ports/glutin/window.rs
index f09489f0093..25ce9970c5b 100644
--- a/ports/glutin/window.rs
+++ b/ports/glutin/window.rs
@@ -828,9 +828,6 @@ struct GlutinCompositorProxy {
window_proxy: Option<glutin::WindowProxy>,
}
-// TODO: Should this be implemented here or upstream in glutin::WindowProxy?
-unsafe impl Send for GlutinCompositorProxy {}
-
impl CompositorProxy for GlutinCompositorProxy {
fn send(&self, msg: compositor_thread::Msg) {
// Send a message and kick the OS event loop awake.