diff options
author | Lars Bergstrom <lars@lars.com> | 2014-02-13 19:09:39 -0600 |
---|---|---|
committer | Lars Bergstrom <lars@lars.com> | 2014-02-21 18:42:40 -0600 |
commit | 347bbd2883f5baa12f94462ef9f1e8af9685cb41 (patch) | |
tree | 5dddc833a1bada5e4b72d25a7d6f8839dae7100c /src/components/main/pipeline.rs | |
parent | 683c2fada1b0f9b10754341b59240591023bcc5f (diff) | |
download | servo-347bbd2883f5baa12f94462ef9f1e8af9685cb41.tar.gz servo-347bbd2883f5baa12f94462ef9f1e8af9685cb41.zip |
De-@mut the FrameTree.
Diffstat (limited to 'src/components/main/pipeline.rs')
-rw-r--r-- | src/components/main/pipeline.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/components/main/pipeline.rs b/src/components/main/pipeline.rs index 8874fcc41a8..3017e9653c5 100644 --- a/src/components/main/pipeline.rs +++ b/src/components/main/pipeline.rs @@ -20,7 +20,9 @@ use servo_net::image_cache_task::ImageCacheTask; use servo_net::resource_task::ResourceTask; use servo_util::time::ProfilerChan; use std::cell::RefCell; -use std::rc::Rc; +//FIXME: switch to std::rc when we upgrade Rust +use layers::temp_rc::Rc; +//use std::rc::Rc; /// A uniquely-identifiable pipeline of script task, layout task, and render task. pub struct Pipeline { |