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

Unified Diff: skia/ext/vector_canvas.h

Issue 14903: Reverting 7318. (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
« no previous file with comments | « skia/ext/skia_utils_win.cc ('k') | skia/ext/vector_canvas.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: skia/ext/vector_canvas.h
===================================================================
--- skia/ext/vector_canvas.h (revision 7318)
+++ 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&);
};
} // namespace skia
« no previous file with comments | « skia/ext/skia_utils_win.cc ('k') | skia/ext/vector_canvas.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698