1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_TEST_TEST_BLINK_WEB_UNIT_TEST_SUPPORT_H_
6 #define CONTENT_TEST_TEST_BLINK_WEB_UNIT_TEST_SUPPORT_H_
8 #include "base/compiler_specific.h"
9 #include "base/files/scoped_temp_dir.h"
10 #include "cc/blink/web_compositor_support_impl.h"
11 #include "content/child/blink_platform_impl.h"
12 #include "content/child/simple_webmimeregistry_impl.h"
13 #include "content/child/webfileutilities_impl.h"
14 #include "content/test/mock_webblob_registry_impl.h"
15 #include "content/test/mock_webclipboard_impl.h"
16 #include "content/test/weburl_loader_mock_factory.h"
17 #include "third_party/WebKit/public/platform/WebUnitTestSupport.h"
24 class WebLayerTreeView
;
28 class RendererScheduler
;
30 // An implementation of blink::WebUnitTestSupport and BlinkPlatformImpl for
32 class TestBlinkWebUnitTestSupport
: public blink::WebUnitTestSupport
,
33 public BlinkPlatformImpl
{
35 TestBlinkWebUnitTestSupport();
36 virtual ~TestBlinkWebUnitTestSupport();
38 virtual blink::WebBlobRegistry
* blobRegistry();
39 virtual blink::WebClipboard
* clipboard();
40 virtual blink::WebFileUtilities
* fileUtilities();
41 virtual blink::WebIDBFactory
* idbFactory();
42 virtual blink::WebMimeRegistry
* mimeRegistry();
44 virtual blink::WebURLLoader
* createURLLoader();
45 virtual blink::WebString
userAgent() override
;
46 virtual blink::WebData
loadResource(const char* name
);
47 virtual blink::WebString
queryLocalizedString(
48 blink::WebLocalizedString::Name name
);
49 virtual blink::WebString
queryLocalizedString(
50 blink::WebLocalizedString::Name name
,
51 const blink::WebString
& value
);
52 virtual blink::WebString
queryLocalizedString(
53 blink::WebLocalizedString::Name name
,
54 const blink::WebString
& value1
,
55 const blink::WebString
& value2
);
56 virtual blink::WebString
defaultLocale();
58 #if defined(OS_WIN) || defined(OS_MACOSX)
59 void SetThemeEngine(blink::WebThemeEngine
* engine
);
60 virtual blink::WebThemeEngine
* themeEngine();
63 virtual blink::WebCompositorSupport
* compositorSupport();
65 virtual blink::WebGestureCurve
* createFlingAnimationCurve(
66 blink::WebGestureDevice device_source
,
67 const blink::WebFloatPoint
& velocity
,
68 const blink::WebSize
& cumulative_scroll
) override
;
70 virtual blink::WebUnitTestSupport
* unitTestSupport();
72 // WebUnitTestSupport implementation
73 virtual void registerMockedURL(const blink::WebURL
& url
,
74 const blink::WebURLResponse
& response
,
75 const blink::WebString
& filePath
);
76 virtual void registerMockedErrorURL(const blink::WebURL
& url
,
77 const blink::WebURLResponse
& response
,
78 const blink::WebURLError
& error
);
79 virtual void unregisterMockedURL(const blink::WebURL
& url
);
80 virtual void unregisterAllMockedURLs();
81 virtual void serveAsynchronousMockedRequests();
82 virtual blink::WebString
webKitRootDir();
83 virtual blink::WebLayerTreeView
* createLayerTreeViewForTesting();
84 virtual blink::WebData
readFromFile(const blink::WebString
& path
);
85 virtual bool getBlobItems(const blink::WebString
& uuid
,
86 blink::WebVector
<blink::WebBlobData::Item
*>* items
);
87 virtual blink::WebThread
* currentThread();
90 MockWebBlobRegistryImpl blob_registry_
;
91 SimpleWebMimeRegistryImpl mime_registry_
;
92 scoped_ptr
<MockWebClipboardImpl
> mock_clipboard_
;
93 WebFileUtilitiesImpl file_utilities_
;
94 base::ScopedTempDir file_system_root_
;
95 scoped_ptr
<WebURLLoaderMockFactory
> url_loader_factory_
;
96 cc_blink::WebCompositorSupportImpl compositor_support_
;
97 scoped_ptr
<RendererScheduler
> renderer_scheduler_
;
98 scoped_ptr
<blink::WebThread
> web_thread_
;
100 #if defined(OS_WIN) || defined(OS_MACOSX)
101 blink::WebThemeEngine
* active_theme_engine_
;
103 DISALLOW_COPY_AND_ASSIGN(TestBlinkWebUnitTestSupport
);
106 } // namespace content
108 #endif // CONTENT_TEST_TEST_BLINK_WEB_UNIT_TEST_SUPPORT_H_