| Index: third_party/WebKit/LayoutTests/http/tests/serviceworker/chromium/resources/clients-matchall-worker.js
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/serviceworker/chromium/resources/clients-matchall-worker.js b/third_party/WebKit/LayoutTests/http/tests/serviceworker/chromium/resources/clients-matchall-worker.js
|
| deleted file mode 100644
|
| index 624921a58091569c68234a8f3eebba3847d73de9..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/http/tests/serviceworker/chromium/resources/clients-matchall-worker.js
|
| +++ /dev/null
|
| @@ -1,15 +0,0 @@
|
| -self.onmessage = function(e) {
|
| - var port = e.data.port;
|
| - var options = e.data.options;
|
| -
|
| - e.waitUntil(self.clients.matchAll(options).then(function(clients) {
|
| - var message = [];
|
| - clients.forEach(function(client) {
|
| - message.push([client.visibilityState,
|
| - client.focused,
|
| - client.url,
|
| - client.frameType]);
|
| - });
|
| - port.postMessage(message);
|
| - }));
|
| -};
|
|
|