summaryrefslogtreecommitdiffstats
path: root/content/shell/webkit_test_runner.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/shell/webkit_test_runner.h')
-rw-r--r--content/shell/webkit_test_runner.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/content/shell/webkit_test_runner.h b/content/shell/webkit_test_runner.h
new file mode 100644
index 0000000..539ed09
--- /dev/null
+++ b/content/shell/webkit_test_runner.h
@@ -0,0 +1,33 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#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 webkit test runner.
+class WebKitTestRunner : public RenderViewObserver {
+ public:
+ explicit WebKitTestRunner(RenderView* render_view);
+ virtual ~WebKitTestRunner();
+
+ // RenderViewObserver implementation.
+ virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
+ virtual void DidClearWindowObject(WebKit::WebFrame* frame) OVERRIDE;
+ virtual void DidFinishLoad(WebKit::WebFrame* frame) OVERRIDE;
+
+ private:
+ // Message handlers.
+ void OnCaptureTextDump(bool as_text, bool printing, bool recursive);
+ void OnCaptureImageDump(const std::string& expected_pixel_hash);
+
+ DISALLOW_COPY_AND_ASSIGN(WebKitTestRunner);
+};
+
+} // namespace content
+
+#endif // CONTENT_SHELL_WEBKIT_TEST_RUNNER_H_