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

Unified Diff: third_party/WebKit/LayoutTests/inspector/version-controller.html

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/inspector/version-controller.html
diff --git a/third_party/WebKit/LayoutTests/inspector/version-controller.html b/third_party/WebKit/LayoutTests/inspector/version-controller.html
index 7289f1f1e611d905984424b675c3cf3208fdf1ff..850a6480065d8c2539394b79220aff018d0ac977 100644
--- a/third_party/WebKit/LayoutTests/inspector/version-controller.html
+++ b/third_party/WebKit/LayoutTests/inspector/version-controller.html
@@ -15,7 +15,7 @@ function test()
function runVersionControllerTest(oldVersion, currentVersion)
{
InspectorTest.addResult("Testing methods to run to upgrade from " + oldVersion + " to " + currentVersion + ".");
- var versionController = new WebInspector.VersionController();
+ var versionController = new Common.VersionController();
var methodsToRun = versionController._methodsToRunToUpdateVersion(oldVersion, currentVersion);
InspectorTest.addResult("Methods to run: " + JSON.stringify(methodsToRun));
InspectorTest.addResult("");
@@ -38,7 +38,7 @@ function test()
function runClearBreakpointsTest(breakpointsCount, maxBreakpointsCount)
{
InspectorTest.addResult("Starting test with " + breakpointsCount + " breakpoints and " + maxBreakpointsCount + " allowed at max.");
- var versionController = new WebInspector.VersionController();
+ var versionController = new Common.VersionController();
var serializedBreakpoints = [];
for (var i = 0; i < breakpointsCount; ++i)
serializedBreakpoints.push(createBreakpoint("file" + i + ".js", i % 10, "", true));

Powered by Google App Engine
This is Rietveld 408576698