summaryrefslogtreecommitdiff
path: root/chromium/content/browser/resources/process/process_internals.js
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/browser/resources/process/process_internals.js')
-rw-r--r--chromium/content/browser/resources/process/process_internals.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/chromium/content/browser/resources/process/process_internals.js b/chromium/content/browser/resources/process/process_internals.js
index 822fa3f5a2d..782f19344d8 100644
--- a/chromium/content/browser/resources/process/process_internals.js
+++ b/chromium/content/browser/resources/process/process_internals.js
@@ -98,6 +98,12 @@ function frameToTreeItem(frame) {
if (frame.siteInstance.siteUrl) {
itemLabel += `, site:${frame.siteInstance.siteUrl.url}`;
}
+ if (frame.siteInstance.processLockUrl) {
+ itemLabel += `, lock:${frame.siteInstance.processLockUrl.url}`;
+ }
+ if (frame.siteInstance.isOriginKeyed) {
+ itemLabel += ', origin-keyed';
+ }
if (frame.lastCommittedUrl) {
itemLabel += ` | url: ${frame.lastCommittedUrl.url}`;
}