Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1524)

Unified Diff: third_party/WebKit/Source/modules/serviceworkers/WaitUntilObserver.cpp

Issue 2877543003: [ServiceWorker] Allow waitUntil to be called multiple times asynchronously (Closed)
Patch Set: Fix other tests using waitUntil incorrectly Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/serviceworkers/WaitUntilObserver.cpp
diff --git a/third_party/WebKit/Source/modules/serviceworkers/WaitUntilObserver.cpp b/third_party/WebKit/Source/modules/serviceworkers/WaitUntilObserver.cpp
index d8056ae69e40194bdf9fdb55b9627aaf8768753c..db14e8694fe75e8b61b25fccf829335350a12870 100644
--- a/third_party/WebKit/Source/modules/serviceworkers/WaitUntilObserver.cpp
+++ b/third_party/WebKit/Source/modules/serviceworkers/WaitUntilObserver.cpp
@@ -12,7 +12,9 @@
#include "core/dom/ExecutionContext.h"
#include "modules/serviceworkers/ServiceWorkerGlobalScope.h"
#include "platform/LayoutTestSupport.h"
+#include "platform/bindings/Microtask.h"
#include "platform/wtf/Assertions.h"
+#include "platform/wtf/Functional.h"
#include "public/platform/Platform.h"
#include "public/platform/modules/serviceworker/WebServiceWorkerEventResult.h"
#include "v8/include/v8.h"
@@ -69,7 +71,16 @@ class WaitUntilObserver::ThenFunction final : public ScriptFunction {
value =
ScriptPromise::Reject(value.GetScriptState(), value).GetScriptValue();
} else {
- observer_->OnPromiseFulfilled();
+ // At this time point the microtask A running resolver function of this
+ // promise has already been queued, in order to allow microtask A to call
+ // waitUntil, we enqueue another microtask B to delay the promise resolved
+ // notification, thus A will run before B so A can call waitUntil well,
+ // but any other microtask C possibly enqueued by A will run after B so
+ // C maybe can't call waitUntil if there has no any extend lifetime
+ // promise at that time.
+ Microtask::EnqueueMicrotask(
+ WTF::Bind(&WaitUntilObserver::OnPromiseFulfilled,
+ WrapPersistent(observer_.Get())));
leonhsl(Using Gerrit) 2017/05/22 13:23:02 I'm not so familiar with WTF::Bind compared with b
shimazu 2017/05/23 09:08:43 I think it's good as is because the task should ha
leonhsl(Using Gerrit) 2017/05/23 09:40:18 Got it. Thanks!
}
observer_ = nullptr;
return value;
@@ -108,9 +119,21 @@ void WaitUntilObserver::DidDispatchEvent(bool event_dispatch_failed) {
void WaitUntilObserver::WaitUntil(ScriptState* script_state,
ScriptPromise script_promise,
ExceptionState& exception_state) {
- if (event_dispatch_state_ != EventDispatchState::kInitial) {
+ if (pending_activity_ == 0) {
exception_state.ThrowDOMException(kInvalidStateError,
- "The event handler is already finished.");
+ "The event handler is already finished "
+ "and no any extend lifetime promises are "
+ "outstanding.");
+ return;
+ }
+
+ if (pending_activity_ == 1 &&
+ event_dispatch_state_ == EventDispatchState::kInitial &&
+ v8::MicrotasksScope::IsRunningMicrotasks(script_state->GetIsolate())) {
shimazu 2017/05/22 03:48:41 Could you explain the purpose of this branch? I mi
leonhsl(Using Gerrit) 2017/05/22 05:01:43 This is to forbid calling waitUntil in such a case
shimazu 2017/05/22 08:09:05 I see, I could understand what this is for, thanks
leonhsl(Using Gerrit) 2017/05/22 13:23:02 The above suggestion reminded me, I considered a l
+ exception_state.ThrowDOMException(
+ kInvalidStateError,
+ "Although the event handler is not finished yet, it's running "
+ "microtask, and no any extend lifetime promises are outstanding.");
return;
}

Powered by Google App Engine
This is Rietveld 408576698