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

Side by Side Diff: dm/DMExpectations.h

Issue 553583004: Remove expectations / -r from DM entirely. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase 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
« no previous file with comments | « dm/DMCpuGMTask.cpp ('k') | dm/DMExpectationsTask.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #ifndef DMExpectations_DEFINED
2 #define DMExpectations_DEFINED
3
4 #include "DMTask.h"
5
6 namespace DM {
7
8 struct Expectations {
9 virtual ~Expectations() {}
10
11 // Return true if bitmap is the correct output for task, else false.
12 virtual bool check(const Task& task, SkBitmap bitmap) const {
13 return true;
14 }
15 };
16
17 } // namespace DM
18
19 #endif // DMExpectations_DEFINED
OLDNEW
« no previous file with comments | « dm/DMCpuGMTask.cpp ('k') | dm/DMExpectationsTask.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698