| Index: third_party/WebKit/Source/devtools/front_end/quick_open/FilteredListWidget.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/quick_open/FilteredListWidget.js b/third_party/WebKit/Source/devtools/front_end/quick_open/FilteredListWidget.js
|
| index 08bba4e7c70f8c30643a3a505d5069232b41b48c..a6073ec5599bf34755f95ad02a1a9d3e8c3af879 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/quick_open/FilteredListWidget.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/quick_open/FilteredListWidget.js
|
| @@ -79,7 +79,7 @@ QuickOpen.FilteredListWidget = class extends UI.VBox {
|
| /**
|
| * @param {string} text
|
| * @param {string} query
|
| - * @return {?Array.<!Common.SourceRange>}
|
| + * @return {?Array.<!TextUtils.SourceRange>}
|
| */
|
| function rangesForMatch(text, query) {
|
| var opcodes = Diff.Diff.charDiff(query, text);
|
| @@ -88,7 +88,7 @@ QuickOpen.FilteredListWidget = class extends UI.VBox {
|
| for (var i = 0; i < opcodes.length; ++i) {
|
| var opcode = opcodes[i];
|
| if (opcode[0] === Diff.Diff.Operation.Equal)
|
| - ranges.push(new Common.SourceRange(offset, opcode[1].length));
|
| + ranges.push(new TextUtils.SourceRange(offset, opcode[1].length));
|
| else if (opcode[0] !== Diff.Diff.Operation.Insert)
|
| return null;
|
| offset += opcode[1].length;
|
|
|