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

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

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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 2d8398195a560f341a5acf1326e6838cbf35bcbb..108b5d0987555bdda1d5bac9d01fb9ce8238ec7f 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 WebInspector.TextRange(i, column, i, column + string.length);
+ range = new Common.TextRange(i, column, i, column + string.length);
var newRange = sourceFrame._textEditor.editRange(range, replacement);
break;
}

Powered by Google App Engine
This is Rietveld 408576698