Index: include/core/SkPictureRecorder.h |
diff --git a/include/core/SkPictureRecorder.h b/include/core/SkPictureRecorder.h |
index 96e7aa019de212801df8cd5cb8eb8494ea78e946..f20a06adf44fa41d3e166f3b7fc2ac3677675006 100644 |
--- a/include/core/SkPictureRecorder.h |
+++ b/include/core/SkPictureRecorder.h |
@@ -140,30 +140,4 @@ |
typedef SkNoncopyable INHERITED; |
}; |
-class SkLiteDL; |
-class SkLiteRecorder; |
- |
-// A similar API to SkPictureRecorder, wrapping SkLiteRecorder and SkLiteDL. |
-class SK_API SkPictureRecorder_Lite : SkNoncopyable { |
-public: |
- SkPictureRecorder_Lite(); |
- ~SkPictureRecorder_Lite(); |
- |
- SkCanvas* beginRecording(const SkRect& bounds); |
- SkCanvas* beginRecording(SkScalar w, SkScalar h) { |
- return this->beginRecording(SkRect::MakeWH(w,h)); |
- } |
- |
- SkCanvas* getRecordingCanvas(); |
- |
- void optimizeFor(GrContext* ctx) { fGrContextToOptimizeFor = ctx; } |
- |
- sk_sp<SkDrawable> finishRecordingAsDrawable(uint32_t ignored = 0); |
- |
-private: |
- std::unique_ptr<SkLiteRecorder> fRecorder; |
- sk_sp<SkLiteDL> fDL; |
- GrContext* fGrContextToOptimizeFor = nullptr; |
-}; |
- |
#endif |