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

Side by Side Diff: dm/DMTestTask.h

Issue 531653002: SkThreadPool ~~> SkTaskGroup (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: cleanup allowThreaded() Created 6 years, 3 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 unified diff | Download patch
OLDNEW
1 #ifndef DMTestTask_DEFINED 1 #ifndef DMTestTask_DEFINED
2 #define DMTestTask_DEFINED 2 #define DMTestTask_DEFINED
3 3
4 #include "DMReporter.h" 4 #include "DMReporter.h"
5 #include "DMTask.h" 5 #include "DMTask.h"
6 #include "DMTaskRunner.h" 6 #include "DMTaskRunner.h"
7 #include "SkString.h" 7 #include "SkString.h"
8 #include "SkTemplates.h" 8 #include "SkTemplates.h"
9 #include "Test.h" 9 #include "Test.h"
10 10
11 // Runs a unit test. 11 // Runs a unit test.
12 namespace DM { 12 namespace DM {
13 13
14 class TestReporter : public skiatest::Reporter { 14 class TestReporter : public skiatest::Reporter {
15 public: 15 public:
16 TestReporter() {} 16 TestReporter() {}
17 17
18 const char* failure() const { return fFailure.c_str(); } 18 const char* failure() const { return fFailure.c_str(); }
19 19
20 private: 20 private:
21 virtual bool allowExtendedTest() const SK_OVERRIDE; 21 virtual bool allowExtendedTest() const SK_OVERRIDE;
22 virtual bool allowThreaded() const SK_OVERRIDE;
23 virtual bool verbose() const SK_OVERRIDE; 22 virtual bool verbose() const SK_OVERRIDE;
24 23
25 virtual void onReportFailed(const SkString& desc) SK_OVERRIDE { 24 virtual void onReportFailed(const SkString& desc) SK_OVERRIDE {
26 fFailure = desc; 25 fFailure = desc;
27 } 26 }
28 27
29 SkString fFailure; 28 SkString fFailure;
30 }; 29 };
31 30
32 class CpuTestTask : public CpuTask { 31 class CpuTestTask : public CpuTask {
(...skipping 20 matching lines...) Expand all
53 52
54 private: 53 private:
55 TestReporter fTestReporter; 54 TestReporter fTestReporter;
56 SkAutoTDelete<skiatest::Test> fTest; 55 SkAutoTDelete<skiatest::Test> fTest;
57 const SkString fName; 56 const SkString fName;
58 }; 57 };
59 58
60 } // namespace DM 59 } // namespace DM
61 60
62 #endif // DMTestTask_DEFINED 61 #endif // DMTestTask_DEFINED
OLDNEW
« no previous file with comments | « dm/DMTaskRunner.cpp ('k') | dm/DMTestTask.cpp » ('j') | src/utils/SkRunnable.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698