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

Unified Diff: cc/test/pixel_test_output_surface.h

Issue 1535833002: Delete CC. (Closed) Base URL: git@github.com:domokit/mojo.git@moz-5
Patch Set: rebase Created 4 years, 11 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/pixel_test.cc ('k') | cc/test/pixel_test_output_surface.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/test/pixel_test_output_surface.h
diff --git a/cc/test/pixel_test_output_surface.h b/cc/test/pixel_test_output_surface.h
deleted file mode 100644
index 27819c1cc06f342208d9cd8ee02a4cde509ae840..0000000000000000000000000000000000000000
--- a/cc/test/pixel_test_output_surface.h
+++ /dev/null
@@ -1,42 +0,0 @@
-// 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 CC_TEST_PIXEL_TEST_OUTPUT_SURFACE_H_
-#define CC_TEST_PIXEL_TEST_OUTPUT_SURFACE_H_
-
-#include "cc/output/output_surface.h"
-
-namespace cc {
-
-class PixelTestOutputSurface : public OutputSurface {
- public:
- explicit PixelTestOutputSurface(
- scoped_refptr<ContextProvider> context_provider,
- scoped_refptr<ContextProvider> worker_context_provider,
- bool flipped_output_surface);
- explicit PixelTestOutputSurface(
- scoped_refptr<ContextProvider> context_provider,
- bool flipped_output_surface);
- explicit PixelTestOutputSurface(
- scoped_ptr<SoftwareOutputDevice> software_device);
-
- void Reshape(const gfx::Size& size, float scale_factor) override;
- bool HasExternalStencilTest() const override;
- void SwapBuffers(CompositorFrame* frame) override;
-
- void set_surface_expansion_size(const gfx::Size& surface_expansion_size) {
- surface_expansion_size_ = surface_expansion_size;
- }
- void set_has_external_stencil_test(bool has_test) {
- external_stencil_test_ = has_test;
- }
-
- private:
- gfx::Size surface_expansion_size_;
- bool external_stencil_test_;
-};
-
-} // namespace cc
-
-#endif // CC_TEST_PIXEL_TEST_OUTPUT_SURFACE_H_
« no previous file with comments | « cc/test/pixel_test.cc ('k') | cc/test/pixel_test_output_surface.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698