Index: third_party/WebKit/LayoutTests/http/tests/inspector/live-edit-test.js |
diff --git a/third_party/WebKit/LayoutTests/http/tests/inspector/live-edit-test.js b/third_party/WebKit/LayoutTests/http/tests/inspector/live-edit-test.js |
index 108b5d0987555bdda1d5bac9d01fb9ce8238ec7f..d23539dc14723e9d9c9a0135d5c1e7a1f5266e6c 100644 |
--- a/third_party/WebKit/LayoutTests/http/tests/inspector/live-edit-test.js |
+++ b/third_party/WebKit/LayoutTests/http/tests/inspector/live-edit-test.js |
@@ -8,7 +8,7 @@ InspectorTest.replaceInSource = function(sourceFrame, string, replacement) |
var column = line.indexOf(string); |
if (column === -1) |
continue; |
- range = new Common.TextRange(i, column, i, column + string.length); |
+ range = new TextUtils.TextRange(i, column, i, column + string.length); |
var newRange = sourceFrame._textEditor.editRange(range, replacement); |
break; |
} |