Index: dm/DMReplayTask.h |
diff --git a/dm/DMReplayTask.h b/dm/DMReplayTask.h |
index de28172000d6eba391554e3ad0ac57543583be79..f2ed89d147225e342fed029bc2cdc1efba85eda0 100644 |
--- a/dm/DMReplayTask.h |
+++ b/dm/DMReplayTask.h |
@@ -17,6 +17,7 @@ public: |
enum Mode { |
kNormal_Mode, |
kRTree_Mode, |
+ kSkRecord_Mode, |
}; |
ReplayTask(const Task& parent, // ReplayTask must be a child task. Pass its parent here. |
skiagm::GM*, // GM to run through a picture. Takes ownership. |
@@ -28,7 +29,7 @@ public: |
virtual SkString name() const SK_OVERRIDE { return fName; } |
private: |
- const bool fUseRTree; |
+ const Mode fMode; |
const SkString fName; |
SkAutoTDelete<skiagm::GM> fGM; |
const SkBitmap fReference; |