aboutsummaryrefslogtreecommitdiffstats
path: root/src/components
diff options
context:
space:
mode:
Diffstat (limited to 'src/components')
-rw-r--r--src/components/main/constellation.rs5
-rw-r--r--src/components/msg/constellation_msg.rs1
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),