Index: tools/skpdiff/SkImageDiffer.h |
diff --git a/tools/skpdiff/SkImageDiffer.h b/tools/skpdiff/SkImageDiffer.h |
index 6c570cbb8e41bc3d8437937047f55396cd262258..874bd3de0f64810e5429adc89758e3cf4760ab39 100644 |
--- a/tools/skpdiff/SkImageDiffer.h |
+++ b/tools/skpdiff/SkImageDiffer.h |
@@ -91,6 +91,9 @@ public: |
protected: |
bool fIsGood; |
+ |
+ // Used to ensure that only one thread is able to queue new entries at a time |
+ SkMutex fQueueMutex; |
mtklein
2013/11/06 14:24:36
Pretty weird to have this on the base class.
|
}; |