Chromium Code Reviews| Index: cc/resources/raster_buffer.h |
| diff --git a/cc/resources/raster_buffer.h b/cc/resources/raster_buffer.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..2f010853e8d886c7ffcb8d5659180e86ec145702 |
| --- /dev/null |
| +++ b/cc/resources/raster_buffer.h |
| @@ -0,0 +1,25 @@ |
| +// Copyright 2014 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_RESOURCES_RASTER_BUFFER_H_ |
| +#define CC_RESOURCES_RASTER_BUFFER_H_ |
| + |
| +#include "skia/ext/refptr.h" |
| + |
| +class SkCanvas; |
| + |
| +namespace cc { |
| + |
| +class RasterBuffer { |
| + public: |
| + virtual skia::RefPtr<SkCanvas> AcquireSkCanvas() = 0; |
| + virtual void ReleaseSkCanvas(const skia::RefPtr<SkCanvas>& canvas) = 0; |
|
reveman
2014/08/14 12:26:36
const ref? That makes it seem like ReleaseSkCanvas
auygun
2014/08/15 09:20:40
According to the documentation in skia/ext/refptr.
reveman
2014/08/15 11:54:31
OK, we typically don't use const ref when passing
auygun
2014/08/15 15:08:23
Acknowledged.
|
| + |
| + protected: |
| + virtual ~RasterBuffer() {} |
| +}; |
| + |
| +} // namespace cc |
| + |
| +#endif // CC_RESOURCES_RASTER_BUFFER_H_ |