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

Unified Diff: cc/test/fake_output_surface.h

Issue 2337913003: Fork cc::OutputSurface into cc::CompositorFrameSink. (Closed)
Patch Set: cfsfork: android-vulkan Created 4 years, 3 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
« no previous file with comments | « cc/test/fake_layer_tree_host_impl_client.h ('k') | cc/test/fake_output_surface.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/fake_output_surface.h
diff --git a/cc/test/fake_output_surface.h b/cc/test/fake_output_surface.h
index 775724386b913927b85b73663a5bddc68a9f40b1..1dbe036f4402fcd688d0b914bc55994fe58f8698 100644
--- a/cc/test/fake_output_surface.h
+++ b/cc/test/fake_output_surface.h
@@ -61,30 +61,6 @@ class FakeOutputSurface : public OutputSurface {
nullptr, nullptr, std::move(software_device), false));
}
- static std::unique_ptr<FakeOutputSurface> CreateDelegating3d() {
- return base::WrapUnique(
- new FakeOutputSurface(TestContextProvider::Create(),
- TestContextProvider::CreateWorker(), true));
- }
-
- static std::unique_ptr<FakeOutputSurface> CreateDelegating3d(
- scoped_refptr<TestContextProvider> context_provider) {
- return base::WrapUnique(new FakeOutputSurface(
- context_provider, TestContextProvider::CreateWorker(), true));
- }
-
- static std::unique_ptr<FakeOutputSurface> CreateDelegating3d(
- std::unique_ptr<TestWebGraphicsContext3D> context) {
- return base::WrapUnique(
- new FakeOutputSurface(TestContextProvider::Create(std::move(context)),
- TestContextProvider::CreateWorker(), true));
- }
-
- static std::unique_ptr<FakeOutputSurface> CreateDelegatingSoftware() {
- return base::WrapUnique(
- new FakeOutputSurface(nullptr, nullptr, nullptr, true));
- }
-
static std::unique_ptr<FakeOutputSurface> CreateNoRequireSyncPoint(
std::unique_ptr<TestWebGraphicsContext3D> context) {
std::unique_ptr<FakeOutputSurface> surface(Create3d(std::move(context)));
« no previous file with comments | « cc/test/fake_layer_tree_host_impl_client.h ('k') | cc/test/fake_output_surface.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698