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 9ca7b101690c57712a809df062807bec3ab4be68..fd2f4424c90ab4aea3838475b99e9a6cd728f64a 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js |
+++ b/third_party/WebKit/Source/devtools/front_end/console/ConsoleViewMessage.js |
@@ -1093,7 +1093,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 = |