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

Unified Diff: third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js

Issue 1688283002: [DevTools] Blackboxing in LiveLocations is supported in Linkifier (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@add-source-map-support-v3
Patch Set: Created 4 years, 10 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: third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js
diff --git a/third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js b/third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js
index e535581587b9244229274af30104a06f603a2453..3de3f5ffdac73eb9a0803cff76741ea4df956ce0 100644
--- a/third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js
+++ b/third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js
@@ -658,6 +658,7 @@ WebInspector.UILocation = function(uiSourceCode, lineNumber, columnNumber)
this.uiSourceCode = uiSourceCode;
this.lineNumber = lineNumber;
this.columnNumber = columnNumber;
+ this.isBlackboxed = false;
dgozman 2016/02/18 02:17:53 Remove this one!
kozy 2016/02/18 02:36:26 Done.
}
WebInspector.UILocation.prototype = {
@@ -686,7 +687,15 @@ WebInspector.UILocation.prototype = {
toUIString: function()
{
return this.uiSourceCode.url() + ":" + (this.lineNumber + 1);
- }
+ },
+
+ /**
+ * @param {boolean} isBlackboxed
+ */
+ setBlackboxed: function(isBlackboxed)
+ {
+ this.isBlackboxed = isBlackboxed;
+ },
}
/**

Powered by Google App Engine
This is Rietveld 408576698