aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/script_thread.rs
diff options
context:
space:
mode:
authorSimon Sapin <simon.sapin@exyr.org>2017-10-16 14:35:30 +0200
committerSimon Sapin <simon.sapin@exyr.org>2017-10-16 17:16:20 +0200
commitaa15dc269f41503d81ad44cd7e85d69e6f4aeac7 (patch)
tree981d8d64c8de6ffd4c9e855553f34b6d09856d88 /components/script/script_thread.rs
parenta5100e3c783f140c368da89e25e50581dce91bfd (diff)
downloadservo-aa15dc269f41503d81ad44cd7e85d69e6f4aeac7.tar.gz
servo-aa15dc269f41503d81ad44cd7e85d69e6f4aeac7.zip
Remove use of unstable box syntax.
http://www.robohornet.org gives a score of 101.36 on master, and 102.68 with this PR. The latter is slightly better, but probably within noise level. So it looks like this PR does not affect DOM performance. This is expected since `Box::new` is defined as: ```rust impl<T> Box<T> { #[inline(always)] pub fn new(x: T) -> Box<T> { box x } } ``` With inlining, it should compile to the same as box syntax.
Diffstat (limited to 'components/script/script_thread.rs')
-rw-r--r--components/script/script_thread.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs
index 244038e08f3..119fe4bec2c 100644
--- a/components/script/script_thread.rs
+++ b/components/script/script_thread.rs
@@ -290,7 +290,7 @@ impl ScriptChan for SendableMainThreadScriptChan {
}
fn clone(&self) -> Box<ScriptChan + Send> {
- box SendableMainThreadScriptChan((&self.0).clone())
+ Box::new(SendableMainThreadScriptChan((&self.0).clone()))
}
}
@@ -304,7 +304,7 @@ impl ScriptChan for MainThreadScriptChan {
}
fn clone(&self) -> Box<ScriptChan + Send> {
- box MainThreadScriptChan((&self.0).clone())
+ Box::new(MainThreadScriptChan((&self.0).clone()))
}
}
@@ -804,7 +804,7 @@ impl ScriptThread {
// Ask the router to proxy IPC messages from the control port to us.
let control_port = ROUTER.route_ipc_receiver_to_new_mpsc_receiver(state.control_port);
- let boxed_script_sender = box MainThreadScriptChan(chan.clone());
+ let boxed_script_sender = Box::new(MainThreadScriptChan(chan.clone()));
let (image_cache_channel, image_cache_port) = channel();