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/webdriver_handlers.rs | |
parent | 5403c2fff0877ba8833262fde191a3e205ddd247 (diff) | |
download | servo-607e011b050f22e10a69fc7d57d7e2dc473d979e.tar.gz servo-607e011b050f22e10a69fc7d57d7e2dc473d979e.zip |
Renamed constellation::Frame to constellation::BrowsingContext.
Diffstat (limited to 'components/script/webdriver_handlers.rs')
-rw-r--r-- | components/script/webdriver_handlers.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/script/webdriver_handlers.rs b/components/script/webdriver_handlers.rs index 7e7fe95122b..7bc31263c25 100644 --- a/components/script/webdriver_handlers.rs +++ b/components/script/webdriver_handlers.rs @@ -109,10 +109,10 @@ pub fn handle_execute_async_script(documents: &Documents, window.upcast::<GlobalScope>().evaluate_js_on_global_with_result(&eval, rval.handle_mut()); } -pub fn handle_get_frame_id(documents: &Documents, - pipeline: PipelineId, - webdriver_frame_id: WebDriverFrameId, - reply: IpcSender<Result<Option<PipelineId>, ()>>) { +pub fn handle_get_pipeline_id(documents: &Documents, + pipeline: PipelineId, + webdriver_frame_id: WebDriverFrameId, + reply: IpcSender<Result<Option<PipelineId>, ()>>) { let result = match webdriver_frame_id { WebDriverFrameId::Short(_) => { // This isn't supported yet |