| 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 dfa3f62f68c01f7653f26e7a8a0d07d7466aab85..85cf80c6661d907b87faca4d7027d4b3890ab6bf 100644
|
| --- a/content/browser/resources/service_worker/serviceworker_internals.js
|
| +++ b/content/browser/resources/service_worker/serviceworker_internals.js
|
| @@ -185,11 +185,11 @@ cr.define('serviceworker', function() {
|
| unregistered_versions);
|
| var template;
|
| var container = $('serviceworker-list');
|
| - // Existing templates are keyed by partition_path. This allows
|
| + // Existing templates are keyed by partition_id. This allows
|
| // the UI to be updated in-place rather than refreshing the
|
| // whole page.
|
| for (var i = 0; i < container.childNodes.length; ++i) {
|
| - if (container.childNodes[i].partition_path == partition_path) {
|
| + if (container.childNodes[i].partition_id == partition_id) {
|
| template = container.childNodes[i];
|
| }
|
| }
|
|
|