aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkDocument.h
diff options
context:
space:
mode:
authorGravatar Hal Canary <halcanary@google.com>2018-01-08 15:02:36 -0500
committerGravatar Skia Commit-Bot <skia-commit-bot@chromium.org>2018-01-08 20:53:41 +0000
commitc5980d0aa3e97f07a4f5bc413a2c5bc5ed3bc973 (patch)
tree3c1d2ef9ef742095502fdf55538db2f3497bf95a /include/core/SkDocument.h
parent274218ef0173ff6046f2258c703c1c83ea37c02f (diff)
SkDocument: remove unused fDoneProc
Change-Id: I9a0739992e90a0a6d44a75b0b570097553343f1d Reviewed-on: https://skia-review.googlesource.com/92141 Commit-Queue: Hal Canary <halcanary@google.com> Reviewed-by: Ben Wagner <bungeman@google.com>
Diffstat (limited to 'include/core/SkDocument.h')
-rw-r--r--include/core/SkDocument.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/core/SkDocument.h b/include/core/SkDocument.h
index 82b8a4ff25..7f293f149d 100644
--- a/include/core/SkDocument.h
+++ b/include/core/SkDocument.h
@@ -184,7 +184,7 @@ public:
void abort();
protected:
- SkDocument(SkWStream*, void (*)(SkWStream*, bool aborted));
+ SkDocument(SkWStream*);
// note: subclasses must call close() in their destructor, as the base class
// cannot do this for them.
@@ -207,7 +207,6 @@ protected:
private:
SkWStream* fStream;
- void (*fDoneProc)(SkWStream*, bool aborted);
State fState;
typedef SkRefCnt INHERITED;