diff options
author | brettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-19 21:18:21 +0000 |
---|---|---|
committer | brettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-19 21:18:21 +0000 |
commit | 0026e48d1cf39bac65875fba6f5d38eb550a22f9 (patch) | |
tree | b144d2619f68e667f8970c91b72cd2478b9231c3 /skia/ext/vector_canvas.h | |
parent | 28461252ccd08f81ba91e89428fce03f9d66530a (diff) | |
download | chromium_src-0026e48d1cf39bac65875fba6f5d38eb550a22f9.zip chromium_src-0026e48d1cf39bac65875fba6f5d38eb550a22f9.tar.gz chromium_src-0026e48d1cf39bac65875fba6f5d38eb550a22f9.tar.bz2 |
Remove base dependencies in the Windows-specific skia/ext code.
Review URL: http://codereview.chromium.org/14900
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7317 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia/ext/vector_canvas.h')
-rw-r--r-- | skia/ext/vector_canvas.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/skia/ext/vector_canvas.h b/skia/ext/vector_canvas.h index 6b61b58..897ffd4 100644 --- a/skia/ext/vector_canvas.h +++ b/skia/ext/vector_canvas.h @@ -37,7 +37,9 @@ class VectorCanvas : public PlatformCanvasWin { // 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&); }; } // namespace skia |