diff options
Diffstat (limited to 'components/compositing/compositor_task.rs')
-rw-r--r-- | components/compositing/compositor_task.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/compositing/compositor_task.rs b/components/compositing/compositor_task.rs index 9a47fce1600..be134d751bc 100644 --- a/components/compositing/compositor_task.rs +++ b/components/compositing/compositor_task.rs @@ -91,7 +91,7 @@ impl ScriptListener for Box<CompositorProxy+'static+Send> { /// Implementation of the abstract `PaintListener` interface. impl PaintListener for Box<CompositorProxy+'static+Send> { - fn get_graphics_metadata(&mut self) -> Option<NativeGraphicsMetadata> { + fn graphics_metadata(&mut self) -> Option<NativeGraphicsMetadata> { let (chan, port) = channel(); self.send(Msg::GetGraphicsMetadata(chan)); // If the compositor is shutting down when a paint task |