| Index: content/browser/resources/service_worker/serviceworker_internals.js
|
| diff --git a/content/browser/resources/service_worker/serviceworker_internals.js b/content/browser/resources/service_worker/serviceworker_internals.js
|
| index 93bf437fbc5eef154eb63251ded4553f4f6283fc..b5c85eebfab5033ff7a75bad61acd6a7f4a451a2 100644
|
| --- a/content/browser/resources/service_worker/serviceworker_internals.js
|
| +++ b/content/browser/resources/service_worker/serviceworker_internals.js
|
| @@ -192,11 +192,7 @@ cr.define('serviceworker', function() {
|
| }
|
| }
|
|
|
| - function onWorkerStarted(partition_id, version_id, process_id, thread_id) {
|
| - update();
|
| - }
|
| -
|
| - function onWorkerStopped(partition_id, version_id, process_id, thread_id) {
|
| + function onRunningStateChanged(partition_id, version_id) {
|
| update();
|
| }
|
|
|
| @@ -258,8 +254,7 @@ cr.define('serviceworker', function() {
|
| onOptions: onOptions,
|
| onOperationComplete: onOperationComplete,
|
| onPartitionData: onPartitionData,
|
| - onWorkerStarted: onWorkerStarted,
|
| - onWorkerStopped: onWorkerStopped,
|
| + onRunningStateChanged: onRunningStateChanged,
|
| onErrorReported: onErrorReported,
|
| onConsoleMessageReported: onConsoleMessageReported,
|
| onVersionStateChanged: onVersionStateChanged,
|
|
|