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

Side by Side Diff: content/test/test_blink_web_unit_test_support.h

Issue 878413002: Wire the scheduler up in TestBlinkWebUnitTestSupport (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Lazily create the WebSchedulerImpl and RendererScheduler if needed Created 5 years, 10 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_TEST_TEST_BLINK_WEB_UNIT_TEST_SUPPORT_H_ 5 #ifndef CONTENT_TEST_TEST_BLINK_WEB_UNIT_TEST_SUPPORT_H_
6 #define CONTENT_TEST_TEST_BLINK_WEB_UNIT_TEST_SUPPORT_H_ 6 #define CONTENT_TEST_TEST_BLINK_WEB_UNIT_TEST_SUPPORT_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/files/scoped_temp_dir.h" 9 #include "base/files/scoped_temp_dir.h"
10 #include "cc/blink/web_compositor_support_impl.h" 10 #include "cc/blink/web_compositor_support_impl.h"
11 #include "content/child/blink_platform_impl.h" 11 #include "content/child/blink_platform_impl.h"
12 #include "content/child/simple_webmimeregistry_impl.h" 12 #include "content/child/simple_webmimeregistry_impl.h"
13 #include "content/child/webfileutilities_impl.h" 13 #include "content/child/webfileutilities_impl.h"
14 #include "content/test/mock_webblob_registry_impl.h" 14 #include "content/test/mock_webblob_registry_impl.h"
15 #include "content/test/mock_webclipboard_impl.h" 15 #include "content/test/mock_webclipboard_impl.h"
16 #include "content/test/weburl_loader_mock_factory.h" 16 #include "content/test/weburl_loader_mock_factory.h"
17 #include "third_party/WebKit/public/platform/WebUnitTestSupport.h" 17 #include "third_party/WebKit/public/platform/WebUnitTestSupport.h"
18 18
19 namespace base { 19 namespace base {
20 class StatsTable; 20 class StatsTable;
21 } 21 }
22 22
23 namespace blink { 23 namespace blink {
24 class WebLayerTreeView; 24 class WebLayerTreeView;
25 } 25 }
26 26
27 namespace content { 27 namespace content {
28 class RendererScheduler;
29 class WebSchedulerImpl;
28 30
29 // An implementation of blink::WebUnitTestSupport and BlinkPlatformImpl for 31 // An implementation of blink::WebUnitTestSupport and BlinkPlatformImpl for
30 // tests. 32 // tests.
31 class TestBlinkWebUnitTestSupport : public blink::WebUnitTestSupport, 33 class TestBlinkWebUnitTestSupport : public blink::WebUnitTestSupport,
32 public BlinkPlatformImpl { 34 public BlinkPlatformImpl {
33 public: 35 public:
34 TestBlinkWebUnitTestSupport(); 36 TestBlinkWebUnitTestSupport();
35 virtual ~TestBlinkWebUnitTestSupport(); 37 virtual ~TestBlinkWebUnitTestSupport();
36 38
37 virtual blink::WebBlobRegistry* blobRegistry(); 39 virtual blink::WebBlobRegistry* blobRegistry();
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 const blink::WebURLResponse& response, 78 const blink::WebURLResponse& response,
77 const blink::WebURLError& error); 79 const blink::WebURLError& error);
78 virtual void unregisterMockedURL(const blink::WebURL& url); 80 virtual void unregisterMockedURL(const blink::WebURL& url);
79 virtual void unregisterAllMockedURLs(); 81 virtual void unregisterAllMockedURLs();
80 virtual void serveAsynchronousMockedRequests(); 82 virtual void serveAsynchronousMockedRequests();
81 virtual blink::WebString webKitRootDir(); 83 virtual blink::WebString webKitRootDir();
82 virtual blink::WebLayerTreeView* createLayerTreeViewForTesting(); 84 virtual blink::WebLayerTreeView* createLayerTreeViewForTesting();
83 virtual blink::WebData readFromFile(const blink::WebString& path); 85 virtual blink::WebData readFromFile(const blink::WebString& path);
84 virtual bool getBlobItems(const blink::WebString& uuid, 86 virtual bool getBlobItems(const blink::WebString& uuid,
85 blink::WebVector<blink::WebBlobData::Item*>* items); 87 blink::WebVector<blink::WebBlobData::Item*>* items);
88 virtual blink::WebScheduler* scheduler();
86 89
87 private: 90 private:
88 MockWebBlobRegistryImpl blob_registry_; 91 MockWebBlobRegistryImpl blob_registry_;
89 SimpleWebMimeRegistryImpl mime_registry_; 92 SimpleWebMimeRegistryImpl mime_registry_;
90 scoped_ptr<MockWebClipboardImpl> mock_clipboard_; 93 scoped_ptr<MockWebClipboardImpl> mock_clipboard_;
91 WebFileUtilitiesImpl file_utilities_; 94 WebFileUtilitiesImpl file_utilities_;
92 base::ScopedTempDir file_system_root_; 95 base::ScopedTempDir file_system_root_;
93 scoped_ptr<WebURLLoaderMockFactory> url_loader_factory_; 96 scoped_ptr<WebURLLoaderMockFactory> url_loader_factory_;
94 cc_blink::WebCompositorSupportImpl compositor_support_; 97 cc_blink::WebCompositorSupportImpl compositor_support_;
95 scoped_ptr<base::StatsTable> stats_table_; 98 scoped_ptr<base::StatsTable> stats_table_;
99 scoped_ptr<RendererScheduler> renderer_scheduler_;
100 scoped_ptr<WebSchedulerImpl> web_scheduler_;
96 101
97 #if defined(OS_WIN) || defined(OS_MACOSX) 102 #if defined(OS_WIN) || defined(OS_MACOSX)
98 blink::WebThemeEngine* active_theme_engine_; 103 blink::WebThemeEngine* active_theme_engine_;
99 #endif 104 #endif
100 DISALLOW_COPY_AND_ASSIGN(TestBlinkWebUnitTestSupport); 105 DISALLOW_COPY_AND_ASSIGN(TestBlinkWebUnitTestSupport);
101 }; 106 };
102 107
103 } // namespace content 108 } // namespace content
104 109
105 #endif // CONTENT_TEST_TEST_BLINK_WEB_UNIT_TEST_SUPPORT_H_ 110 #endif // CONTENT_TEST_TEST_BLINK_WEB_UNIT_TEST_SUPPORT_H_
OLDNEW
« no previous file with comments | « content/renderer/scheduler/web_scheduler_impl.h ('k') | content/test/test_blink_web_unit_test_support.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698