From 9d2693191009c2726b2fb58906d5a3bc15be16e4 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Tue, 14 Apr 2015 12:13:14 +0200 Subject: [PATCH] Mention #5681 in a TODO comment. --- components/devtools/actors/framerate.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/devtools/actors/framerate.rs b/components/devtools/actors/framerate.rs index 55b6755fd81..0cb82486342 100644 --- a/components/devtools/actors/framerate.rs +++ b/components/devtools/actors/framerate.rs @@ -48,6 +48,7 @@ impl FramerateActor { } // callback on request animation frame + #[allow(dead_code)] pub fn on_refresh_driver_tick(&mut self) { if !self.is_recording { return; @@ -67,7 +68,7 @@ impl FramerateActor { self.is_recording = true; self.start_time = Some(precise_time_ns()); - // TODO: Need implement requesting animation frame + // TODO(#5681): Need implement requesting animation frame // http://hg.mozilla.org/mozilla-central/file/0a46652bd992/dom/base/nsGlobalWindow.cpp#l5314 }