Chromium Code Reviews| Index: dm/DMSrcSink.h |
| diff --git a/dm/DMSrcSink.h b/dm/DMSrcSink.h |
| index d8811378962a706070d4695034dcd96b5d67b6bc..1beaec9a697f3e9c2a34816e0477dfd38843a50d 100644 |
| --- a/dm/DMSrcSink.h |
| +++ b/dm/DMSrcSink.h |
| @@ -304,10 +304,12 @@ public: |
| Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override; |
| }; |
| -class ViaDeferred : public Via { |
|
hal.canary
2015/10/16 16:57:54
Was this class never used?
Was ViaDeferred::dra
mtklein
2015/10/16 17:20:33
Sort of. It's left over from when we were testing
|
| +class ViaRemote : public Via { |
| public: |
| - explicit ViaDeferred(Sink* sink) : Via(sink) {} |
| + ViaRemote(bool cache, Sink* sink) : Via(sink), fCache(cache) {} |
| Error draw(const Src&, SkBitmap*, SkWStream*, SkString*) const override; |
| +private: |
| + bool fCache; |
| }; |
| class ViaSerialization : public Via { |