diff options
author | Glenn Watson <gw@intuitionlibrary.com> | 2014-07-07 15:43:47 +1000 |
---|---|---|
committer | Glenn Watson <gw@intuitionlibrary.com> | 2014-07-07 15:43:47 +1000 |
commit | 422bda73792fc1ac5ef589367b69841f2a02ced1 (patch) | |
tree | 89e6a25f3c6a28e2a28197a5f0fe45de4d399df6 /src/components/layout/layout_task.rs | |
parent | e62637fee2f1c9627468dde81a68df1dd40b6bc9 (diff) | |
download | servo-422bda73792fc1ac5ef589367b69841f2a02ced1.tar.gz servo-422bda73792fc1ac5ef589367b69841f2a02ced1.zip |
Warning police.
Diffstat (limited to 'src/components/layout/layout_task.rs')
-rw-r--r-- | src/components/layout/layout_task.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/layout/layout_task.rs b/src/components/layout/layout_task.rs index f7fd408fd6e..df1ca581efc 100644 --- a/src/components/layout/layout_task.rs +++ b/src/components/layout/layout_task.rs @@ -312,7 +312,7 @@ impl LayoutTask { opts: &Opts, time_profiler_chan: TimeProfilerChan) -> LayoutTask { - let local_image_cache = Arc::new(Mutex::new(LocalImageCache(image_cache_task.clone()))); + let local_image_cache = Arc::new(Mutex::new(LocalImageCache::new(image_cache_task.clone()))); let screen_size = Size2D(Au(0), Au(0)); let parallel_traversal = if opts.layout_threads != 1 { Some(WorkQueue::new("LayoutWorker", opts.layout_threads, ptr::mut_null())) |