mirror of
https://github.com/servo/servo.git
synced 2025-07-22 14:53:49 +01:00
libservo: Remove message-based API (#35366)
Signed-off-by: Martin Robinson <mrobinson@igalia.com>
This commit is contained in:
parent
044f77d728
commit
84006ba76d
5 changed files with 301 additions and 791 deletions
|
@ -229,8 +229,6 @@ pub enum EmbedderMsg {
|
|||
),
|
||||
/// Request to hide the IME when the editable element is blurred.
|
||||
HideIME(WebViewId),
|
||||
/// Servo has shut down
|
||||
Shutdown,
|
||||
/// Report a complete sampled profile
|
||||
ReportProfile(Vec<u8>),
|
||||
/// Notifies the embedder about media session events
|
||||
|
@ -293,7 +291,6 @@ impl Debug for EmbedderMsg {
|
|||
EmbedderMsg::PromptPermission(..) => write!(f, "PromptPermission"),
|
||||
EmbedderMsg::ShowIME(..) => write!(f, "ShowIME"),
|
||||
EmbedderMsg::HideIME(..) => write!(f, "HideIME"),
|
||||
EmbedderMsg::Shutdown => write!(f, "Shutdown"),
|
||||
EmbedderMsg::AllowOpeningWebView(..) => write!(f, "AllowOpeningWebView"),
|
||||
EmbedderMsg::WebViewOpened(..) => write!(f, "WebViewOpened"),
|
||||
EmbedderMsg::WebViewClosed(..) => write!(f, "WebViewClosed"),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue