| Index: chrome/test/data/extensions/api_test/service_worker/sync/sw.js
|
| diff --git a/chrome/test/data/extensions/api_test/service_worker/sync/sw.js b/chrome/test/data/extensions/api_test/service_worker/sync/sw.js
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..fc0f26a467413c310ec9e2fe5e5cc1f3c57fd4db
|
| --- /dev/null
|
| +++ b/chrome/test/data/extensions/api_test/service_worker/sync/sw.js
|
| @@ -0,0 +1,24 @@
|
| +// Copyright 2015 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +var port = null;
|
| +this.onsync = function(e) {
|
| + if (port) {
|
| + e.waitUntil(new Promise(function(resolve) {
|
| + // Add a small delay to respond so we can exercise and test the
|
| + // offline->online transition.
|
| + // NOTE: the following setTimeout() is not a requirement for this test. It
|
| + // is here to just demonstrate that the test passes with a bit of
|
| + // asynchrony.
|
| + setTimeout(function() {
|
| + port.postMessage('SYNC: ' + e.tag);
|
| + resolve();
|
| + }, 0);
|
| + }));
|
| + }
|
| +};
|
| +
|
| +this.onmessage = function(e) {
|
| + port = e.ports[0];
|
| +};
|
|
|