| 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 0979e6e0b301302803df054450025f58d676a19e..5ca19f105ede0d9b32a74667ec4c3b965c25a421 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js
|
| @@ -109,12 +109,7 @@ Workspace.UISourceCode = class extends Common.Object {
|
| * @return {string}
|
| */
|
| fullDisplayName() {
|
| - var parentPath = this._parentURL.replace(/^(?:https?|file)\:\/\//, '');
|
| - try {
|
| - parentPath = decodeURI(parentPath);
|
| - } catch (e) {
|
| - }
|
| - return parentPath + '/' + this.displayName(true);
|
| + return this._project.fullDisplayName(this);
|
| }
|
|
|
| /**
|
|
|