Chromium Code Reviews| Index: skia/ext/vector_canvas.h |
| =================================================================== |
| --- skia/ext/vector_canvas.h (revision 7281) |
| +++ skia/ext/vector_canvas.h (working copy) |
| @@ -37,7 +37,9 @@ |
| // Returns true if the top device is vector based and not bitmap based. |
| bool IsTopDeviceVectorial() const; |
| - DISALLOW_COPY_AND_ASSIGN(VectorCanvas); |
| + // Copy & assign are not supported. |
| + VectorCanvas(const VectorCanvas&); |
| + const VectorCanvas& operator=(const VectorCanvas&); |
| }; |
|
dglazkov
2008/12/19 20:46:41
It's already a sub-class of SkNonCopyable -- do we
|
| } // namespace skia |