diff options
author | Tim Kuehn <tkuehn@cmu.edu> | 2013-08-05 13:37:04 -0700 |
---|---|---|
committer | Tim Kuehn <tkuehn@cmu.edu> | 2013-08-19 19:11:11 -0400 |
commit | e64609eb255147b12f79d66764698de3d815efcc (patch) | |
tree | 476de2434ed5384021c7d3192f68a76127c2578a /src | |
parent | 5a1a56507b49f9747e3899041033c24b00ead7a3 (diff) | |
download | servo-e64609eb255147b12f79d66764698de3d815efcc.tar.gz servo-e64609eb255147b12f79d66764698de3d815efcc.zip |
placeholders for FrameRectMsg from Layout to Constellation
Diffstat (limited to 'src')
-rw-r--r-- | src/components/main/constellation.rs | 5 | ||||
-rw-r--r-- | src/components/msg/constellation_msg.rs | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/components/main/constellation.rs b/src/components/main/constellation.rs index a6f1b6f9a40..7009dca19c0 100644 --- a/src/components/main/constellation.rs +++ b/src/components/main/constellation.rs @@ -359,6 +359,11 @@ impl Constellation { self.pipelines.insert(pipeline.id, pipeline); } +/* + FrameRectMsg(pipeline_id, subpage_id, rect, rect_type) => { + } + +*/ LoadIframeUrlMsg(url, source_pipeline_id, subpage_id, size_future) => { // A message from the script associated with pipeline_id that it has // parsed an iframe during html parsing. This iframe will result in a diff --git a/src/components/msg/constellation_msg.rs b/src/components/msg/constellation_msg.rs index af0a01184a3..eb7b196c25d 100644 --- a/src/components/msg/constellation_msg.rs +++ b/src/components/msg/constellation_msg.rs @@ -29,6 +29,7 @@ impl ConstellationChan { pub enum Msg { ExitMsg(Chan<()>), InitLoadUrlMsg(Url), + //FrameRectMsg(PipelineId, SubpageId, Rect<?>), LoadUrlMsg(PipelineId, Url, Future<Size2D<uint>>), LoadIframeUrlMsg(Url, PipelineId, SubpageId, Future<Size2D<uint>>), NavigateMsg(NavigationDirection), |