Index: third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js b/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js |
index 9d89be4e5929e2a7bd95748ade3003659a99d6af..2570e90da1106a5e0bfdeff80c6052490438ae8c 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js |
+++ b/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js |
@@ -1092,7 +1092,7 @@ Console.ConsoleViewMessage = class { |
this._searchRegex.lastIndex = 0; |
var sourceRanges = []; |
while ((match = this._searchRegex.exec(text)) && match[0]) |
- sourceRanges.push(new Common.SourceRange(match.index, match[0].length)); |
+ sourceRanges.push(new TextUtils.SourceRange(match.index, match[0].length)); |
if (sourceRanges.length) { |
this._searchHighlightNodes = |