Auto merge of #10980 - KiChjang:referer-policy-comment, r=jdm

Re-add TODO comment for adding referer info to LoadData

Fixes the accidental removal in #10970.

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/10980)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2016-05-03 02:26:05 -07:00
commit ff687c5b01

View file

@ -987,6 +987,8 @@ impl<LTF: LayoutThreadFactory, STF: ScriptThreadFactory> Constellation<LTF, STF>
Some(old_pipeline) => old_pipeline.url.clone(),
None => Url::parse("about:blank").expect("infallible"),
};
// TODO - loaddata here should have referrer info (not None, None)
LoadData::new(url, None, None)
});