Chromium Code Reviews| Index: cc/test/fake_software_output_device.h |
| diff --git a/cc/test/fake_software_output_device.h b/cc/test/fake_software_output_device.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..ed725628817b3f274d1553389e0fbabe0f0c79e7 |
| --- /dev/null |
| +++ b/cc/test/fake_software_output_device.h |
| @@ -0,0 +1,34 @@ |
| +// Copyright 2012 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_FAKE_SOFTWARE_OUTPUT_DEVICE_H_ |
| +#define CC_TEST_FAKE_SOFTWARE_OUTPUT_DEVICE_H_ |
| + |
| +#include <public/WebImage.h> |
|
jamesr
2012/12/04 07:06:51
"third_party/WebKit..."
|
| + |
| +#include "base/logging.h" |
| +#include "cc/software_output_device.h" |
| +#include "skia/ext/refptr.h" |
| +#include "third_party/skia/include/core/SkDevice.h" |
| + |
| +namespace cc { |
| + |
| +class FakeSoftwareOutputDevice : public SoftwareOutputDevice { |
| + public: |
| + FakeSoftwareOutputDevice(); |
| + virtual ~FakeSoftwareOutputDevice(); |
| + |
| + virtual WebKit::WebImage* Lock(bool forWrite) OVERRIDE; |
| + virtual void Unlock() OVERRIDE; |
| + |
| + virtual void DidChangeViewportSize(gfx::Size size) OVERRIDE; |
| + |
| + private: |
| + skia::RefPtr<SkDevice> device_; |
| + WebKit::WebImage image_; |
| +}; |
| + |
| +} // namespace cc |
| + |
| +#endif // CC_TEST_FAKE_SOFTWARE_OUTPUT_DEVICE_H_ |