blob: eb9b6f0a2382a7878e8946463c677bd4793fa4ad [file] [log] [blame]
// 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_PUBLIC_TEST_TEST_CONTENT_CLIENT_INITIALIZER_
#define CONTENT_PUBLIC_TEST_TEST_CONTENT_CLIENT_INITIALIZER_
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
namespace content {
class ContentClient;
class MockRenderProcessHostFactory;
class NotificationServiceImpl;
class TestContentBrowserClient;
class TestRenderViewHostFactory;
// Initializes various objects needed to run unit tests that use content::
// objects. Currently this includes setting up the notification service,
// creating and setting the content client and the content browser client.
class TestContentClientInitializer {
public:
TestContentClientInitializer();
~TestContentClientInitializer();
// Enables switching RenderViewHost creation to use the test version instead
// of the real implementation. This will last throughout the lifetime of this
// class.
void CreateTestRenderViewHosts();
private:
scoped_ptr<NotificationServiceImpl> notification_service_;
scoped_ptr<ContentClient> content_client_;
scoped_ptr<TestContentBrowserClient> content_browser_client_;
scoped_ptr<MockRenderProcessHostFactory> rph_factory_;
scoped_ptr<TestRenderViewHostFactory> test_render_view_host_factory_;
DISALLOW_COPY_AND_ASSIGN(TestContentClientInitializer);
};
} // namespace content
#endif // CONTENT_PUBLIC_TEST_TEST_CONTENT_CLIENT_INITIALIZER_