diff options
Diffstat (limited to 'components/script_traits/lib.rs')
-rw-r--r-- | components/script_traits/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script_traits/lib.rs b/components/script_traits/lib.rs index 7175536f280..4cd24234a0a 100644 --- a/components/script_traits/lib.rs +++ b/components/script_traits/lib.rs @@ -376,6 +376,8 @@ pub enum ScriptToCompositorMsg { ResizeTo(Size2D<u32>), /// Script has handled a touch event, and either prevented or allowed default actions. TouchEventProcessed(EventResult), + /// Get Scroll Offset + GetScrollOffset(PipelineId, LayerId, IpcSender<Point2D<f32>>), /// Requests that the compositor shut down. Exit, /// Allow the compositor to free script-specific resources. |