diff options
author | Kunal Mohan <kunalmohan99@gmail.com> | 2020-02-18 00:57:33 +0530 |
---|---|---|
committer | Kunal Mohan <kunalmohan99@gmail.com> | 2020-02-18 00:57:33 +0530 |
commit | 4a3bf52a7c408183d4c3eb7d29a6a528f180315d (patch) | |
tree | e8afee61906108b32f9762cfd61c945febd501a1 /components/script_layout_interface/message.rs | |
parent | a5b43b7df10cc73d8203f7ee0c3a5e1a1bb1d9f5 (diff) | |
download | servo-4a3bf52a7c408183d4c3eb7d29a6a528f180315d.tar.gz servo-4a3bf52a7c408183d4c3eb7d29a6a528f180315d.zip |
remove option for origin and mirror changes to layout_thread_2020
Diffstat (limited to 'components/script_layout_interface/message.rs')
-rw-r--r-- | components/script_layout_interface/message.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script_layout_interface/message.rs b/components/script_layout_interface/message.rs index aeefadc7213..9e52083c9d4 100644 --- a/components/script_layout_interface/message.rs +++ b/components/script_layout_interface/message.rs @@ -47,13 +47,13 @@ pub enum Msg { GetRPC(Sender<Box<dyn LayoutRPC + Send>>), /// Requests that the layout thread render the next frame of all animations. - TickAnimations, + TickAnimations(ImmutableOrigin), /// Updates layout's timer for animation testing from script. /// /// The inner field is the number of *milliseconds* to advance, and the bool /// field is whether animations should be force-ticked. - AdvanceClockMs(i32, bool), + AdvanceClockMs(i32, bool, ImmutableOrigin), /// Destroys layout data associated with a DOM node. /// |