Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(219)

Unified Diff: third_party/WebKit/LayoutTests/http/tests/inspector/live-edit-test.js

Issue 2769843003: DevTools: split text_utils out of common module (Closed)
Patch Set: rebaseline Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
}

Powered by Google App Engine
This is Rietveld 408576698