diff options
author | Mike Blumenkrantz <zmike@osg.samsung.com> | 2015-05-22 16:57:47 -0400 |
---|---|---|
committer | Mike Blumenkrantz <zmike@osg.samsung.com> | 2015-05-27 14:45:48 -0400 |
commit | 0d46a3b89a3fb56340b4109b6ecb17cd8da7d3af (patch) | |
tree | 37c065e399edd7f320a2826765d26fc709ef8308 /components/script/script_task.rs | |
parent | 3481c752cd6514a50980044e425d65de80ebf608 (diff) | |
download | servo-0d46a3b89a3fb56340b4109b6ecb17cd8da7d3af.tar.gz servo-0d46a3b89a3fb56340b4109b6ecb17cd8da7d3af.zip |
add navigation state data to LoadComplete messages, finish cef load state cbs
Diffstat (limited to 'components/script/script_task.rs')
-rw-r--r-- | components/script/script_task.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/script_task.rs b/components/script/script_task.rs index 573827cc267..cad737b4af4 100644 --- a/components/script/script_task.rs +++ b/components/script/script_task.rs @@ -960,7 +960,7 @@ impl ScriptTask { self.chan.send(ScriptMsg::RunnableMsg(handler)).unwrap(); let ConstellationChan(ref chan) = self.constellation_chan; - chan.send(ConstellationMsg::LoadComplete).unwrap(); + chan.send(ConstellationMsg::LoadComplete(pipeline)).unwrap(); } /// Handles a timer that fired. |