diff options
author | Alan Jeffrey <ajeffrey@mozilla.com> | 2017-05-12 16:15:15 -0500 |
---|---|---|
committer | Alan Jeffrey <ajeffrey@mozilla.com> | 2017-05-15 21:03:11 -0500 |
commit | 607e011b050f22e10a69fc7d57d7e2dc473d979e (patch) | |
tree | f56d42da8f772c4387cbc272a063b900ad2911ee /components/script/layout_wrapper.rs | |
parent | 5403c2fff0877ba8833262fde191a3e205ddd247 (diff) | |
download | servo-607e011b050f22e10a69fc7d57d7e2dc473d979e.tar.gz servo-607e011b050f22e10a69fc7d57d7e2dc473d979e.zip |
Renamed constellation::Frame to constellation::BrowsingContext.
Diffstat (limited to 'components/script/layout_wrapper.rs')
-rw-r--r-- | components/script/layout_wrapper.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/script/layout_wrapper.rs b/components/script/layout_wrapper.rs index 3d4b90eaeab..7104c02ce32 100644 --- a/components/script/layout_wrapper.rs +++ b/components/script/layout_wrapper.rs @@ -44,7 +44,7 @@ use dom::node::{LayoutNodeHelpers, Node}; use dom::text::Text; use gfx_traits::ByteIndex; use html5ever::{LocalName, Namespace}; -use msg::constellation_msg::{FrameId, PipelineId}; +use msg::constellation_msg::{BrowsingContextId, PipelineId}; use range::Range; use script_layout_interface::{HTMLCanvasData, LayoutNodeType, SVGSVGData, TrustedNodeAddress}; use script_layout_interface::{OpaqueStyleAndLayoutData, PartialPersistentLayoutData}; @@ -908,9 +908,9 @@ impl<'ln> ThreadSafeLayoutNode for ServoThreadSafeLayoutNode<'ln> { this.svg_data() } - fn iframe_frame_id(&self) -> FrameId { + fn iframe_browsing_context_id(&self) -> BrowsingContextId { let this = unsafe { self.get_jsmanaged() }; - this.iframe_frame_id() + this.iframe_browsing_context_id() } fn iframe_pipeline_id(&self) -> PipelineId { |