diff options
author | brettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-19 21:43:04 +0000 |
---|---|---|
committer | brettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-12-19 21:43:04 +0000 |
commit | f2f0a6fe6ea3b0eff50bdbc6ffc8c65b7559912f (patch) | |
tree | 87a5bbf67d6a5db8ac56c8fcb9942dfcca3c6866 /skia/ext/vector_canvas.h | |
parent | df3c1ca1d62d9bb67e10b2d514082b8ac7ac0277 (diff) | |
download | chromium_src-f2f0a6fe6ea3b0eff50bdbc6ffc8c65b7559912f.zip chromium_src-f2f0a6fe6ea3b0eff50bdbc6ffc8c65b7559912f.tar.gz chromium_src-f2f0a6fe6ea3b0eff50bdbc6ffc8c65b7559912f.tar.bz2 |
Reverting 7318.
Review URL: http://codereview.chromium.org/14903
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@7320 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 |