Re: [w3c/manifest] Add installation prompt control flow (#417)

Is there any reason to have `prompt` return a value at all? Can it just be a void method (no Promise)?

If it isn't going to be a long-Promise (resolve when the user makes a choice), then there is really no reason for the app to do anything in response to its resolution. It doesn't have to be synchronous (i.e., the prompt can be shown after a message loop). But it could be a fire-and-forget, with no need for the user to wait on it resolving when the dialog is shown. Then if you want to wait for the user's choice you use `userChoice`.

I think it either makes sense for `prompt` to be a long promise or fire-and-forget. The middle-ground we currently have doesn't make sense.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/manifest/issues/417#issuecomment-254094633

Received on Monday, 17 October 2016 01:50:58 UTC