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

Unified Diff: content/test/test_render_view_host_factory.h

Issue 11346016: Move remaining content test code into the content namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix compile Created 8 years, 2 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
Index: content/test/test_render_view_host_factory.h
===================================================================
--- content/test/test_render_view_host_factory.h (revision 164732)
+++ content/test/test_render_view_host_factory.h (working copy)
@@ -23,18 +23,18 @@
class TestRenderViewHostFactory : public RenderViewHostFactory {
public:
explicit TestRenderViewHostFactory(
- content::RenderProcessHostFactory* rph_factory);
+ RenderProcessHostFactory* rph_factory);
tfarina 2012/10/29 21:01:30 fits above.
jam 2012/10/29 23:48:07 Done.
virtual ~TestRenderViewHostFactory();
virtual void set_render_process_host_factory(
tfarina 2012/10/29 21:01:30 this should have been SetRender...
- content::RenderProcessHostFactory* rph_factory);
- virtual content::RenderViewHost* CreateRenderViewHost(
- content::SiteInstance* instance,
- content::RenderViewHostDelegate* delegate,
- content::RenderWidgetHostDelegate* widget_delegate,
+ RenderProcessHostFactory* rph_factory);
+ virtual RenderViewHost* CreateRenderViewHost(
+ SiteInstance* instance,
+ RenderViewHostDelegate* delegate,
+ RenderWidgetHostDelegate* widget_delegate,
int routing_id,
bool swapped_out,
- content::SessionStorageNamespace* session_storage) OVERRIDE;
+ SessionStorageNamespace* session_storage) OVERRIDE;
private:
// This is a bit of a hack. With the current design of the site instances /
@@ -44,7 +44,7 @@
// Instead, we set it right before we create a new RenderViewHost, which
// happens before the RenderProcessHost is created. This way, the instance
// has the correct factory and creates our special RenderProcessHosts.
- content::RenderProcessHostFactory* render_process_host_factory_;
+ RenderProcessHostFactory* render_process_host_factory_;
DISALLOW_COPY_AND_ASSIGN(TestRenderViewHostFactory);
};

Powered by Google App Engine
This is Rietveld 408576698