| Index: chrome/browser/resources/inspect/inspect.js
|
| diff --git a/chrome/browser/resources/inspect/inspect.js b/chrome/browser/resources/inspect/inspect.js
|
| index b2ba0b8d8e3cbaf973d9b52213b6777ad9d5f2e1..cafb82667c4fa0ea0a2b439c6c030c7589ca8fae 100644
|
| --- a/chrome/browser/resources/inspect/inspect.js
|
| +++ b/chrome/browser/resources/inspect/inspect.js
|
| @@ -379,7 +379,7 @@ function populateRemoteTargets(devices) {
|
| }
|
| if (majorChromeVersion >= MIN_VERSION_TAB_CLOSE) {
|
| addActionLink(row, 'close',
|
| - sendTargetCommand.bind(null, 'close', page), page.attached);
|
| + sendTargetCommand.bind(null, 'close', page), false);
|
| }
|
| }
|
| }
|
| @@ -419,7 +419,7 @@ function addToWorkersList(data) {
|
| var row =
|
| addTargetToList(data, $('workers-list'), ['name', 'description', 'url']);
|
| addActionLink(row, 'terminate',
|
| - sendTargetCommand.bind(null, 'close', data), data.attached);
|
| + sendTargetCommand.bind(null, 'close', data), false);
|
| }
|
|
|
| function addToOthersList(data) {
|
|
|