aboutsummaryrefslogtreecommitdiffstats
path: root/include/core
diff options
context:
space:
mode:
authorPatrick Dubroy <dubroy@google.com>2010-12-15 15:08:06 -0800
committerPatrick Dubroy <dubroy@google.com>2010-12-15 15:08:06 -0800
commit543c793213096e01f205f5f3d43d03cff6101f43 (patch)
tree2569799028ac97c89e9a81858a6b3585e9080f62 /include/core
parentbdc1207aa05f2f1b013e937f9cbe4795768eaa74 (diff)
downloadexternal_skia-543c793213096e01f205f5f3d43d03cff6101f43.zip
external_skia-543c793213096e01f205f5f3d43d03cff6101f43.tar.gz
external_skia-543c793213096e01f205f5f3d43d03cff6101f43.tar.bz2
Add optional data argument to SkPixelRef::globalRef()
Diffstat (limited to 'include/core')
-rw-r--r--include/core/SkPixelRef.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/core/SkPixelRef.h b/include/core/SkPixelRef.h
index fceef4d..f1dab36 100644
--- a/include/core/SkPixelRef.h
+++ b/include/core/SkPixelRef.h
@@ -116,7 +116,7 @@ public:
* The default implementation just calls ref(), but subclasses can override
* this method to implement additional behavior.
*/
- virtual void globalRef();
+ virtual void globalRef(void* data=NULL);
/** Release a "global" ref on this object.
* The default implementation just calls unref(), but subclasses can override