Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(896)

Unified Diff: skia/ext/vector_canvas.h

Issue 14900: Remove base dependencies in the Windows-specific skia/ext code. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698