summaryrefslogtreecommitdiffstats
path: root/content/test/test_render_view_host_factory.cc
diff options
context:
space:
mode:
authorrkc@chromium.org <rkc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-04 19:42:18 +0000
committerrkc@chromium.org <rkc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-05-04 19:42:18 +0000
commit24af497c4c0881693cc47516ac3845f283bf07bc (patch)
tree50594b19ab8f40b4c7b0b74d2134220c622593b1 /content/test/test_render_view_host_factory.cc
parentf1dc1b19c71b94689eb0fc6309993ec591600da0 (diff)
downloadchromium_src-24af497c4c0881693cc47516ac3845f283bf07bc.zip
chromium_src-24af497c4c0881693cc47516ac3845f283bf07bc.tar.gz
chromium_src-24af497c4c0881693cc47516ac3845f283bf07bc.tar.bz2
Re-implement the screensaver to use WebView instead of ExtensionDialogHost.
Use WebView to render the screensaver extension instead of ExtensionDialogHost. Using the RenderViewGone override to detect termination of the renderer process to restart it. Added browser tests. R=ben@chromium.org,sky@chromium.org BUG=chromium-os:28211 TEST=Tested that the screensaver comes up; tested the reload via crashing the extension renderer with SIG_ABRT; also ran browser tests. Review URL: https://chromiumcodereview.appspot.com/10191010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@135392 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/test/test_render_view_host_factory.cc')
-rw-r--r--content/test/test_render_view_host_factory.cc40
1 files changed, 40 insertions, 0 deletions
diff --git a/content/test/test_render_view_host_factory.cc b/content/test/test_render_view_host_factory.cc
new file mode 100644
index 0000000..9173dcb
--- /dev/null
+++ b/content/test/test_render_view_host_factory.cc
@@ -0,0 +1,40 @@
+// 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.
+
+#include "content/test/test_render_view_host_factory.h"
+
+#include "content/browser/renderer_host/test_render_view_host.h"
+#include "content/browser/site_instance_impl.h"
+#include "content/public/browser/render_process_host_factory.h"
+
+namespace content {
+
+TestRenderViewHostFactory::TestRenderViewHostFactory(
+ content::RenderProcessHostFactory* rph_factory)
+ : render_process_host_factory_(rph_factory) {
+ RenderViewHostFactory::RegisterFactory(this);
+}
+
+TestRenderViewHostFactory::~TestRenderViewHostFactory() {
+ RenderViewHostFactory::UnregisterFactory();
+}
+
+void TestRenderViewHostFactory::set_render_process_host_factory(
+ content::RenderProcessHostFactory* rph_factory) {
+ render_process_host_factory_ = rph_factory;
+}
+
+content::RenderViewHost* TestRenderViewHostFactory::CreateRenderViewHost(
+ SiteInstance* instance,
+ RenderViewHostDelegate* delegate,
+ int routing_id,
+ bool swapped_out,
+ SessionStorageNamespace* session_storage) {
+ // See declaration of render_process_host_factory_ below.
+ static_cast<SiteInstanceImpl*>(instance)->
+ set_render_process_host_factory(render_process_host_factory_);
+ return new TestRenderViewHost(instance, delegate, routing_id, swapped_out);
+}
+
+} // namespace content