Bug 1438892 - Update bindings for API change in WR PR 2435. r=jrmuizel

MozReview-Commit-ID: EVw2PhfDAmf

--HG--
extra : rebase_source : 629ced73ad3fe4fc094e0429c4cd0aabb9ca929d
This commit is contained in:
Kartikaya Gupta 2018-02-20 09:06:50 -05:00
parent c7fdd8480d
commit 9b1befc75c

View File

@ -1008,7 +1008,7 @@ pub extern "C" fn wr_transaction_scroll_layer(
new_scroll_origin: LayoutPoint
) {
assert!(unsafe { is_in_compositor_thread() });
let scroll_id = ScrollNodeIdType::from(ExternalScrollId(scroll_id, pipeline_id));
let scroll_id = ExternalScrollId(scroll_id, pipeline_id);
txn.scroll_node_with_id(new_scroll_origin, scroll_id, ScrollClamping::NoClamping);
}