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

Unified Diff: src/image/SkSurface_Base.h

Issue 14263017: Cleanup: Removing unnecessary args/complexity in SkSurface_Base and friends (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 8 months 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 | « src/image/SkSurface.cpp ('k') | src/image/SkSurface_Gpu.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/image/SkSurface_Base.h
===================================================================
--- src/image/SkSurface_Base.h (revision 8683)
+++ src/image/SkSurface_Base.h (working copy)
@@ -51,7 +51,7 @@
*
* The default implementation does nothing.
*/
- virtual void onCopyOnWrite(SkImage* cachedImage, SkCanvas*) = 0;
+ virtual void onCopyOnWrite() = 0;
inline SkCanvas* getCachedCanvas();
inline SkImage* getCachedImage();
@@ -63,7 +63,7 @@
SkCanvas* fCachedCanvas;
SkImage* fCachedImage;
- void aboutToDraw(SkCanvas*);
+ void aboutToDraw();
friend class SkCanvas;
friend class SkSurface;
« no previous file with comments | « src/image/SkSurface.cpp ('k') | src/image/SkSurface_Gpu.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698