From 865afe7fd2f88e73c75b4ad2418ce30d55eaf244 Mon Sep 17 00:00:00 2001 From: Darryl James <51972606+dlbjames@users.noreply.github.com> Date: Fri, 25 Aug 2023 10:16:12 -0700 Subject: [PATCH] Remove supportsPromises from the events --- proposals/reading_list.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/proposals/reading_list.md b/proposals/reading_list.md index 25b5b4fe..009dab73 100644 --- a/proposals/reading_list.md +++ b/proposals/reading_list.md @@ -245,15 +245,15 @@ dictionary UpdateEntryOptions { interface Events { // Triggered when a ReadingListEntry is added to the reading list. // |entry|: The entry that was added. - [supportsPromises] static void onEntryAdded(ReadingListEntry entry); + static void onEntryAdded(ReadingListEntry entry); // Triggered when a ReadingListEntry is removed from the reading list. // |entry|: The entry that was removed. - [supportsPromises] static void onEntryRemoved(ReadingListEntry entry); + static void onEntryRemoved(ReadingListEntry entry); // Triggered when a ReadingListEntry was updated in the reading list. // |entry|: The entry that was updated. - [supportsPromises] static void onEntryUpdated(ReadingListEntry entry); + static void onEntryUpdated(ReadingListEntry entry); }; };