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

Unified Diff: content/shell/webkit_test_runner.h

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: patch for landing 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/shell_resources.grd ('k') | content/shell/webkit_test_runner.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/webkit_test_runner.h
diff --git a/content/shell/layout_test_controller.h b/content/shell/webkit_test_runner.h
similarity index 63%
rename from content/shell/layout_test_controller.h
rename to content/shell/webkit_test_runner.h
index 6491a7c867055ee4ecca4837a6d1909beb1f4837..539ed097fdf7c532e8af3e8f30528d1c075423ab 100644
--- a/content/shell/layout_test_controller.h
+++ b/content/shell/webkit_test_runner.h
@@ -2,18 +2,18 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CONTENT_SHELL_LAYOUT_TEST_CONTROLLER_H_
-#define CONTENT_SHELL_LAYOUT_TEST_CONTROLLER_H_
+#ifndef CONTENT_SHELL_WEBKIT_TEST_RUNNER_H_
+#define CONTENT_SHELL_WEBKIT_TEST_RUNNER_H_
#include "content/public/renderer/render_view_observer.h"
namespace content {
-// This is the renderer side of the layout test controller.
-class LayoutTestController : public RenderViewObserver {
+// This is the renderer side of the webkit test runner.
+class WebKitTestRunner : public RenderViewObserver {
public:
- explicit LayoutTestController(RenderView* render_view);
- virtual ~LayoutTestController();
+ explicit WebKitTestRunner(RenderView* render_view);
+ virtual ~WebKitTestRunner();
// RenderViewObserver implementation.
virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
@@ -25,9 +25,9 @@ class LayoutTestController : public RenderViewObserver {
void OnCaptureTextDump(bool as_text, bool printing, bool recursive);
void OnCaptureImageDump(const std::string& expected_pixel_hash);
- DISALLOW_COPY_AND_ASSIGN(LayoutTestController);
+ DISALLOW_COPY_AND_ASSIGN(WebKitTestRunner);
};
} // namespace content
-#endif // CONTENT_SHELL_LAYOUT_TEST_CONTROLLER_H_
+#endif // CONTENT_SHELL_WEBKIT_TEST_RUNNER_H_
« no previous file with comments | « content/shell/shell_resources.grd ('k') | content/shell/webkit_test_runner.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698