blob: 556242d76fa98c11c0487e9c4f12f9a446e05683 [file] [log] [blame]
// Copyright 2013 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_TEST_TEST_BLINK_WEB_UNIT_TEST_SUPPORT_H_
#define CONTENT_TEST_TEST_BLINK_WEB_UNIT_TEST_SUPPORT_H_
#include <memory>
#include "base/compiler_specific.h"
#include "base/files/scoped_temp_dir.h"
#include "base/macros.h"
#include "build/build_config.h"
#include "cc/blink/web_compositor_support_impl.h"
#include "content/child/blink_platform_impl.h"
#include "content/child/webfileutilities_impl.h"
#include "content/test/mock_webblob_registry_impl.h"
#include "content/test/mock_webclipboard_impl.h"
#include "third_party/WebKit/public/platform/WebURLLoaderMockFactory.h"
namespace blink {
namespace scheduler {
class RendererScheduler;
}
}
namespace cc {
class TestSharedBitmapManager;
}
namespace content {
// An implementation of BlinkPlatformImpl for tests.
class TestBlinkWebUnitTestSupport : public BlinkPlatformImpl {
public:
TestBlinkWebUnitTestSupport();
~TestBlinkWebUnitTestSupport() override;
blink::WebBlobRegistry* GetBlobRegistry() override;
blink::WebClipboard* Clipboard() override;
blink::WebFileUtilities* GetFileUtilities() override;
blink::WebIDBFactory* IdbFactory() override;
std::unique_ptr<blink::WebURLLoader> CreateURLLoader(
const blink::WebURLRequest& request,
base::SingleThreadTaskRunner* task_runner) override;
blink::WebString UserAgent() override;
blink::WebString QueryLocalizedString(
blink::WebLocalizedString::Name name) override;
blink::WebString QueryLocalizedString(blink::WebLocalizedString::Name name,
const blink::WebString& value) override;
blink::WebString QueryLocalizedString(
blink::WebLocalizedString::Name name,
const blink::WebString& value1,
const blink::WebString& value2) override;
blink::WebString DefaultLocale() override;
blink::WebCompositorSupport* CompositorSupport() override;
std::unique_ptr<blink::WebGestureCurve> CreateFlingAnimationCurve(
blink::WebGestureDevice device_source,
const blink::WebFloatPoint& velocity,
const blink::WebSize& cumulative_scroll) override;
blink::WebURLLoaderMockFactory* GetURLLoaderMockFactory() override;
blink::WebThread* CurrentThread() override;
std::unique_ptr<viz::SharedBitmap> AllocateSharedBitmap(
const blink::WebSize& size) override;
void GetPluginList(bool refresh,
const blink::WebSecurityOrigin& mainFrameOrigin,
blink::WebPluginListBuilder* builder) override;
std::unique_ptr<blink::WebRTCCertificateGenerator>
CreateRTCCertificateGenerator() override;
private:
MockWebBlobRegistryImpl blob_registry_;
std::unique_ptr<MockWebClipboardImpl> mock_clipboard_;
WebFileUtilitiesImpl file_utilities_;
base::ScopedTempDir file_system_root_;
std::unique_ptr<blink::WebURLLoaderMockFactory> url_loader_factory_;
cc_blink::WebCompositorSupportImpl compositor_support_;
std::unique_ptr<blink::scheduler::RendererScheduler> renderer_scheduler_;
std::unique_ptr<blink::WebThread> web_thread_;
std::unique_ptr<cc::TestSharedBitmapManager> shared_bitmap_manager_;
DISALLOW_COPY_AND_ASSIGN(TestBlinkWebUnitTestSupport);
};
} // namespace content
#endif // CONTENT_TEST_TEST_BLINK_WEB_UNIT_TEST_SUPPORT_H_