diff options
author | scroggo <scroggo@google.com> | 2015-01-30 07:34:48 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-01-30 07:34:48 -0800 |
commit | 1872ad0fe97d8e90446ee619b273de87e9b8c1fa (patch) | |
tree | b70f6d25cb461c2bdc017919144f5dd4f4e3bfa0 /src | |
parent | fc37ad168090637973bf21452aa2685cfcbb273c (diff) |
Remove unused globalRef/globalUnref.
BUG=skia:1482
Review URL: https://codereview.chromium.org/887993003
Diffstat (limited to 'src')
-rw-r--r-- | src/core/SkPixelRef.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/core/SkPixelRef.cpp b/src/core/SkPixelRef.cpp index bb4a5eff88..f56298165c 100644 --- a/src/core/SkPixelRef.cpp +++ b/src/core/SkPixelRef.cpp @@ -272,14 +272,3 @@ size_t SkPixelRef::getAllocatedSizeInBytes() const { return 0; } -/////////////////////////////////////////////////////////////////////////////// - -#ifdef SK_BUILD_FOR_ANDROID -void SkPixelRef::globalRef(void* data) { - this->ref(); -} - -void SkPixelRef::globalUnref() { - this->unref(); -} -#endif |