aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core
diff options
context:
space:
mode:
Diffstat (limited to 'include/core')
-rw-r--r--include/core/SkRefCnt.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/core/SkRefCnt.h b/include/core/SkRefCnt.h
index 930bf8668b..1e31d918cc 100644
--- a/include/core/SkRefCnt.h
+++ b/include/core/SkRefCnt.h
@@ -263,6 +263,8 @@ public:
void ref() const { sk_atomic_inc(&fRefCnt); }
void unref() const { if (1 == sk_atomic_dec(&fRefCnt)) { SkDELETE((const Derived*)this); } }
void deref() const { this->unref(); } // Chrome prefers to call deref().
+ int32_t getRefCnt() const { return fRefCnt; } // Used by Chrome unit tests.
+
private:
mutable int32_t fRefCnt;
};