diff options
author | Corey Farwell <coreyf@rwell.org> | 2015-05-31 12:45:04 -0400 |
---|---|---|
committer | Corey Farwell <coreyf@rwell.org> | 2015-06-02 08:54:44 -0400 |
commit | 435e551753c1d693ed6dc69238fc466896ed48e4 (patch) | |
tree | 2ab9c3a1e82016472cbb8a47971ad40a2dd68869 /components/compositing/compositor_task.rs | |
parent | c63fc4dc13a23cf5b9f8c0972111b3f9436d2143 (diff) | |
download | servo-435e551753c1d693ed6dc69238fc466896ed48e4.tar.gz servo-435e551753c1d693ed6dc69238fc466896ed48e4.zip |
Remove `get_` prefix on getters
Part of #6224
I certainly didn't remove all of them; I avoided `unsafe` areas and also `components/script`
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 |