| 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 50924e38cdeb0c305dac25933988a5d4adedcf32..5c0232baf2188543a378719c19166aa5e744d78d 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js
|
| @@ -667,10 +667,11 @@ Workspace.UILocation = class {
|
| }
|
|
|
| /**
|
| + * @param {boolean=} skipTrim
|
| * @return {string}
|
| */
|
| - linkText() {
|
| - var linkText = this.uiSourceCode.displayName();
|
| + linkText(skipTrim) {
|
| + var linkText = this.uiSourceCode.displayName(skipTrim);
|
| if (typeof this.lineNumber === 'number')
|
| linkText += ':' + (this.lineNumber + 1);
|
| return linkText;
|
|
|