Index: dm/DMReporter.h |
diff --git a/dm/DMReporter.h b/dm/DMReporter.h |
index 4f4ad432d5186db441b28401f88af11b12c59834..2bb4702178a64ccf043b2ef19e475a770646005a 100644 |
--- a/dm/DMReporter.h |
+++ b/dm/DMReporter.h |
@@ -7,7 +7,6 @@ |
#include "SkTypes.h" |
// Used to report status changes including failures. All public methods are threadsafe. |
- |
namespace DM { |
class Reporter : SkNoncopyable { |
@@ -15,15 +14,13 @@ public: |
Reporter() : fStarted(0), fFinished(0) {} |
void start() { sk_atomic_inc(&fStarted); } |
- void finish() { sk_atomic_inc(&fFinished); } |
- void fail(SkString name); |
+ void finish(SkString name); |
+ void fail(SkString msg); |
int32_t started() const { return fStarted; } |
int32_t finished() const { return fFinished; } |
int32_t failed() const; |
- void updateStatusLine() const; |
- |
void getFailures(SkTArray<SkString>*) const; |
private: |