diff options
author | Matt Brubeck <mbrubeck@limpet.net> | 2017-08-07 17:06:23 -0700 |
---|---|---|
committer | Matt Brubeck <mbrubeck@limpet.net> | 2017-08-08 10:53:20 -0700 |
commit | 832b811198363814928365ea4636bca5abae52db (patch) | |
tree | 4902ac629d88d61babbaf9f644f3c183fd5754af /components/layout/parallel.rs | |
parent | ee697a926d5773c2d8d2ac24e3daabaf0f514bad (diff) | |
download | servo-832b811198363814928365ea4636bca5abae52db.tar.gz servo-832b811198363814928365ea4636bca5abae52db.zip |
Change the mis-named 'traverse_flow_tree_preorder' to 'reflow'
Diffstat (limited to 'components/layout/parallel.rs')
-rw-r--r-- | components/layout/parallel.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/components/layout/parallel.rs b/components/layout/parallel.rs index 16a68796ffb..6b8cb3ef2cc 100644 --- a/components/layout/parallel.rs +++ b/components/layout/parallel.rs @@ -187,7 +187,8 @@ fn top_down_flow<'scope>(unsafe_flows: &[UnsafeFlow], } } -pub fn traverse_flow_tree_preorder( +/// Run the main layout passes in parallel. +pub fn reflow( root: &mut Flow, profiler_metadata: Option<TimerMetadata>, time_profiler_chan: time::ProfilerChan, |