From 9d097e7d1570d68e5fe77ff01595cf14a3e2cc29 Mon Sep 17 00:00:00 2001 From: Aneesh Agrawal Date: Thu, 9 Jun 2016 07:01:24 -0400 Subject: Use fn pipeline_id consistently, not fn pipeline Consistently use the name 'pipeline_id' to refer to a function that returns an (optional) PipelineId. This was prompted by discovering both fn pipeline and fn pipeline_id doing the same job in htmliframeelement.rs. Note that there is fn pipeline in components/compositing/compositor.rs, but that actually returns an Option<&CompositionPipeline>, not any kind of PipelineId. --- components/script/dom/serviceworkerglobalscope.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'components/script/dom/serviceworkerglobalscope.rs') diff --git a/components/script/dom/serviceworkerglobalscope.rs b/components/script/dom/serviceworkerglobalscope.rs index 3d26cbdb67f..16d5348b6e5 100644 --- a/components/script/dom/serviceworkerglobalscope.rs +++ b/components/script/dom/serviceworkerglobalscope.rs @@ -285,7 +285,7 @@ impl ServiceWorkerGlobalScope { } } - pub fn pipeline(&self) -> PipelineId { + pub fn pipeline_id(&self) -> PipelineId { self.id } -- cgit v1.2.3