| Index: third_party/WebKit/Source/devtools/front_end/sources/FilteredUISourceCodeListDelegate.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sources/FilteredUISourceCodeListDelegate.js b/third_party/WebKit/Source/devtools/front_end/sources/FilteredUISourceCodeListDelegate.js
|
| index 11df86efbac84c4606ce9391437b29b1b122ea8d..50d4c8b8c33a62f26d572ee408777b22573bc0a6 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sources/FilteredUISourceCodeListDelegate.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sources/FilteredUISourceCodeListDelegate.js
|
| @@ -80,7 +80,7 @@ WebInspector.FilteredUISourceCodeListDelegate.prototype = {
|
| */
|
| itemKeyAt: function(itemIndex)
|
| {
|
| - return this._uiSourceCodes[itemIndex].fullDisplayName();
|
| + return this._uiSourceCodes[itemIndex].url();
|
| },
|
|
|
| /**
|
| @@ -101,8 +101,8 @@ WebInspector.FilteredUISourceCodeListDelegate.prototype = {
|
| this._scorer = new WebInspector.FilePathScoreFunction(query);
|
| }
|
|
|
| - var path = uiSourceCode.fullDisplayName();
|
| - return score + 10 * this._scorer.score(path, null);
|
| + var url = uiSourceCode.url();
|
| + return score + 10 * this._scorer.score(url, null);
|
| },
|
|
|
| /**
|
|
|