|
ServiceWorker: Wait for registration promise to resolve before changing states.
V8 Promise resolving is done as an async task. So resolving the
ServiceWorker registration promise followed by installing and activating
the worker on the browser side could result in an activated service
worker visible in the JavaScript "then" method, although the worker is
expected to have not yet begun installation at that point.
This patch teaches ServiceWorker to wait for the registration promise to
resolve before processing state changes from the browser.
This patch won't have an effect until the Chromium side change also lands.
BUG= 365252
Committed: https://src.chromium.org/viewvc/blink?view=rev&revision=172459
Total comments: 6
Total comments: 6
Total comments: 2
|
Unified diffs |
Side-by-side diffs |
Delta from patch set |
Stats (+142 lines, -21 lines) |
Patch |
 |
M |
LayoutTests/TestExpectations
|
View
|
1
2
3
|
1 chunk |
+3 lines, -0 lines |
0 comments
|
Download
|
 |
A |
LayoutTests/http/tests/serviceworker/activation-after-registration.html
|
View
|
1
|
1 chunk |
+29 lines, -0 lines |
0 comments
|
Download
|
 |
A |
LayoutTests/http/tests/serviceworker/activation-after-registration-expected.txt
|
View
|
|
1 chunk |
+3 lines, -0 lines |
0 comments
|
Download
|
 |
A + |
LayoutTests/http/tests/serviceworker/resources/worker-no-op.js
|
View
|
|
0 chunks |
+-1 lines, --1 lines |
0 comments
|
Download
|
 |
A |
LayoutTests/virtual/serviceworker/http/tests/serviceworker/activation-after-registration-expected.txt
|
View
|
|
1 chunk |
+3 lines, -0 lines |
0 comments
|
Download
|
 |
M |
Source/bindings/v8/CallbackPromiseAdapter.h
|
View
|
|
2 chunks |
+12 lines, -6 lines |
0 comments
|
Download
|
 |
M |
Source/modules/push_messaging/PushError.h
|
View
|
|
1 chunk |
+2 lines, -2 lines |
0 comments
|
Download
|
 |
M |
Source/modules/push_messaging/PushRegistration.h
|
View
|
|
1 chunk |
+2 lines, -2 lines |
0 comments
|
Download
|
 |
M |
Source/modules/serviceworkers/ServiceWorker.h
|
View
|
|
4 chunks |
+11 lines, -1 line |
0 comments
|
Download
|
 |
M |
Source/modules/serviceworkers/ServiceWorker.cpp
|
View
|
1
2
3
4
|
5 chunks |
+62 lines, -3 lines |
0 comments
|
Download
|
 |
M |
Source/modules/serviceworkers/ServiceWorkerClients.cpp
|
View
|
|
2 chunks |
+1 line, -3 lines |
0 comments
|
Download
|
 |
M |
Source/modules/serviceworkers/ServiceWorkerContainer.cpp
|
View
|
1
2
3
4
|
1 chunk |
+2 lines, -2 lines |
0 comments
|
Download
|
 |
M |
Source/modules/serviceworkers/ServiceWorkerError.h
|
View
|
|
1 chunk |
+2 lines, -2 lines |
0 comments
|
Download
|
 |
M |
public/platform/WebServiceWorker.h
|
View
|
|
1 chunk |
+3 lines, -0 lines |
2 comments
|
Download
|
 |
M |
public/platform/WebServiceWorkerProxy.h
|
View
|
1
2
|
1 chunk |
+8 lines, -1 line |
0 comments
|
Download
|
Total messages: 15 (0 generated)
|