Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: dm/DMSerializeTask.h

Issue 345553003: Support serialization in SkRecord-backed SkPictures. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: robert Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dm/DMSKPTask.cpp ('k') | dm/DMSerializeTask.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dm/DMSerializeTask.h
diff --git a/dm/DMSerializeTask.h b/dm/DMSerializeTask.h
index 1f8b83632bbb7a708e20c6c82564f39a03f6ac11..d06ebeb5f759d22752b41c20d8e20bc4d3566a99 100644
--- a/dm/DMSerializeTask.h
+++ b/dm/DMSerializeTask.h
@@ -14,15 +14,21 @@ namespace DM {
class SerializeTask : public CpuTask {
public:
+ enum Mode {
+ kNormal_Mode,
+ kSkRecord_Mode,
+ };
SerializeTask(const Task& parent,
skiagm::GM*,
- SkBitmap reference);
+ SkBitmap reference,
+ Mode mode);
virtual void draw() SK_OVERRIDE;
virtual bool shouldSkip() const SK_OVERRIDE;
virtual SkString name() const SK_OVERRIDE { return fName; }
private:
+ const Mode fMode;
const SkString fName;
SkAutoTDelete<skiagm::GM> fGM;
const SkBitmap fReference;
« no previous file with comments | « dm/DMSKPTask.cpp ('k') | dm/DMSerializeTask.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698