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

Unified Diff: content/shell/shell_render_process_observer.h

Issue 12258047: [content shell] Use the TestRunner library again and remove the mock testRunner (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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_content_renderer_client.cc ('k') | content/shell/shell_render_process_observer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/shell/shell_render_process_observer.h
diff --git a/content/shell/shell_render_process_observer.h b/content/shell/shell_render_process_observer.h
index 4a487e0494a0140ef5d8a7d9483229485fbc4b20..14914ffb2dd31019121784dbdf9ea9cbf2058cc3 100644
--- a/content/shell/shell_render_process_observer.h
+++ b/content/shell/shell_render_process_observer.h
@@ -17,6 +17,7 @@ class WebFrame;
namespace WebTestRunner {
class WebTestDelegate;
+class WebTestInterfaces;
}
namespace content {
@@ -43,6 +44,9 @@ class ShellRenderProcessObserver : public RenderProcessObserver {
WebTestRunner::WebTestDelegate* test_delegate() const {
return test_delegate_;
}
+ WebTestRunner::WebTestInterfaces* test_interfaces() const {
+ return test_interfaces_.get();
+ }
WebKitTestRunner* main_test_runner() const { return main_test_runner_; }
const base::FilePath& webkit_source_dir() const { return webkit_source_dir_; }
@@ -54,6 +58,7 @@ class ShellRenderProcessObserver : public RenderProcessObserver {
RenderView* main_render_view_;
WebKitTestRunner* main_test_runner_;
WebTestRunner::WebTestDelegate* test_delegate_;
+ scoped_ptr<WebTestRunner::WebTestInterfaces> test_interfaces_;
base::FilePath webkit_source_dir_;
« no previous file with comments | « content/shell/shell_content_renderer_client.cc ('k') | content/shell/shell_render_process_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698