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 CC_TEST_PIXEL_TEST_SOFTWARE_OUTPUT_DEVICE_H_
6 #define CC_TEST_PIXEL_TEST_SOFTWARE_OUTPUT_DEVICE_H_
8 #include "cc/output/software_output_device.h"
12 class PixelTestSoftwareOutputDevice
: public SoftwareOutputDevice
{
14 void Resize(const gfx::Size
& pixel_size
, float scale_factor
) override
;
16 void set_surface_expansion_size(const gfx::Size
& surface_expansion_size
) {
17 surface_expansion_size_
= surface_expansion_size
;
21 gfx::Size surface_expansion_size_
;
26 #endif // CC_TEST_PIXEL_TEST_SOFTWARE_OUTPUT_DEVICE_H_