Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(928)

Unified Diff: Source/devtools/front_end/sdk/Target.js

Issue 404953004: DevTools: Refactor linkifyRawLocation to use fallback url (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Address aandrey's comments Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/devtools/front_end/sdk/Target.js
diff --git a/Source/devtools/front_end/sdk/Target.js b/Source/devtools/front_end/sdk/Target.js
index ddde70173843224f6b4cc389205199d0409f01d1..f56d0a522cfd946e568b67e6dc8095bcffe9c968 100644
--- a/Source/devtools/front_end/sdk/Target.js
+++ b/Source/devtools/front_end/sdk/Target.js
@@ -209,6 +209,14 @@ WebInspector.Target.prototype = {
this.cpuProfilerModel.dispose();
},
+ /**
+ * @return {boolean}
+ */
+ isDetached: function()
+ {
+ return this._connection.isClosed();
+ },
+
__proto__: Protocol.Agents.prototype
}

Powered by Google App Engine
This is Rietveld 408576698