OLD | NEW |
---|---|
(Empty) | |
1 #ifndef RefCntIs_DEFINED | |
2 #define RefCntIs_DEFINED | |
3 | |
4 // Allows tests to assert a particular value for a ref count, | |
5 // without letting Skia library code look at that value. | |
6 | |
7 #include "SkRefCnt.h" | |
8 #include "SkWeakRefCnt.h" | |
9 | |
10 bool RefCntIs(const SkRefCntBase&, int32_t); | |
11 bool WeakRefCntIs(const SkWeakRefCnt&, int32_t); | |
12 | |
13 #endif//RefCntIs_DEFINED | |
OLD | NEW |