aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkStream.h
diff options
context:
space:
mode:
authorGravatar bungeman <bungeman@google.com>2015-01-22 06:08:31 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-01-22 06:08:31 -0800
commit2dca817edb0d741b7d8930009417bf9bd071808d (patch)
tree1d4f4ae993a84972bb984621593e41b54f969c70 /include/core/SkStream.h
parentfaff2c45985a5e0fdb72bdf416d97babecd44833 (diff)
Remove staging SkStream::unref().
SkStream::unref() was added to ease transitioning off of SkStream deriving from SkRefCnt. It is no longer needed, remove it. TBR=reed@google.com Review URL: https://codereview.chromium.org/861413002
Diffstat (limited to 'include/core/SkStream.h')
-rw-r--r--include/core/SkStream.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/include/core/SkStream.h b/include/core/SkStream.h
index 028c5c1a4d..5ea6bf3822 100644
--- a/include/core/SkStream.h
+++ b/include/core/SkStream.h
@@ -41,14 +41,6 @@ public:
virtual ~SkStream() {}
/**
- * @deprecated
- * SkStream is no longer ref counted, but we leave this here for staging.
- */
- void unref() {
- SkDebugf("SkStream is no longer ref counted!");
- }
-
- /**
* Attempts to open the specified file, and return a stream to it (using
* mmap if available). On success, the caller is responsible for deleting.
* On failure, returns NULL.