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

Unified Diff: content/shell/webkit_test_runner.js

Issue 10860037: [content shell] rename layout_test_controller{,_host,_bindings}.* to webkit_test_runner (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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
« no previous file with comments | « content/shell/webkit_test_runner.cc ('k') | content/shell/webkit_test_runner_bindings.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/webkit_test_runner.js
diff --git a/content/shell/layout_test_controller.js b/content/shell/webkit_test_runner.js
similarity index 92%
rename from content/shell/layout_test_controller.js
rename to content/shell/webkit_test_runner.js
index 66fbcf8930c411e5d9ef4f342b73bdc5cae130b8..6aca9f83b918b0c9f4d78f780cb15a96d05d6b2d 100644
--- a/content/shell/layout_test_controller.js
+++ b/content/shell/webkit_test_runner.js
@@ -29,7 +29,7 @@ var textInputController = textInputController || {};
return Proxy.create(handler);
}
- var LayoutTestController = function() {
+ var TestRunner = function() {
Object.defineProperty(this, "notifyDone", {value: NotifyDone});
Object.defineProperty(this, "dumpAsText", {value: SetDumpAsText});
Object.defineProperty(this,
@@ -42,11 +42,11 @@ var textInputController = textInputController || {};
{value: SetShouldStayOnPageAfterHandlingBeforeUnload});
Object.defineProperty(this, "waitUntilDone", {value: SetWaitUntilDone});
}
- LayoutTestController.prototype = DefaultHandler("testRunner");
- testRunner = new LayoutTestController();
+ TestRunner.prototype = DefaultHandler("testRunner");
+ testRunner = new TestRunner();
var AccessibilityController = function() {}
- AccessibilityController.prototype = DefaultHandler("accessibilityController");
marja 2012/08/20 09:07:38 You could add back the ;
+ AccessibilityController.prototype = DefaultHandler("accessibilityController")
accessibilityController = new AccessibilityController();
var GamepadController = function() {}
« no previous file with comments | « content/shell/webkit_test_runner.cc ('k') | content/shell/webkit_test_runner_bindings.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698