mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-28 13:43:45 +03:00
15 lines
387 B
Plaintext
15 lines
387 B
Plaintext
#include <LibGfx/ShareableBitmap.h>
|
|
|
|
endpoint NotificationServer
|
|
{
|
|
show_notification(String text, String title, Gfx::ShareableBitmap icon) => ()
|
|
|
|
update_notification_text(String text, String title) => (bool still_showing)
|
|
|
|
update_notification_icon(Gfx::ShareableBitmap icon) => (bool still_showing)
|
|
|
|
is_showing() => (bool still_showing)
|
|
|
|
close_notification() => ()
|
|
}
|