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

Unified Diff: dm/DMTestTask.h

Issue 806653007: Fix up all the easy virtual ... SK_OVERRIDE cases. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: rebase Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dm/DMSerializeTask.h ('k') | dm/DMWriteTask.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dm/DMTestTask.h
diff --git a/dm/DMTestTask.h b/dm/DMTestTask.h
index 2ca31e38b5be650af623b2abe8cc1994f1fe2c7c..4be57a9f86c4d666d10c4558a977567f38eae7bd 100644
--- a/dm/DMTestTask.h
+++ b/dm/DMTestTask.h
@@ -19,10 +19,10 @@ public:
const SkTArray<SkString>& failures() const { return fFailures; }
private:
- virtual bool allowExtendedTest() const SK_OVERRIDE;
- virtual bool verbose() const SK_OVERRIDE;
+ bool allowExtendedTest() const SK_OVERRIDE;
+ bool verbose() const SK_OVERRIDE;
- virtual void onReportFailed(const skiatest::Failure& failure) SK_OVERRIDE {
+ void onReportFailed(const skiatest::Failure& failure) SK_OVERRIDE {
JsonWriter::AddTestFailure(failure);
SkString newFailure;
@@ -37,9 +37,9 @@ class CpuTestTask : public CpuTask {
public:
CpuTestTask(Reporter*, TaskRunner*, skiatest::TestRegistry::Factory);
- virtual void draw() SK_OVERRIDE;
- virtual bool shouldSkip() const SK_OVERRIDE { return false; }
- virtual SkString name() const SK_OVERRIDE { return fName; }
+ void draw() SK_OVERRIDE;
+ bool shouldSkip() const SK_OVERRIDE { return false; }
+ SkString name() const SK_OVERRIDE { return fName; }
private:
TestReporter fTestReporter;
@@ -51,9 +51,9 @@ class GpuTestTask : public GpuTask {
public:
GpuTestTask(Reporter*, TaskRunner*, skiatest::TestRegistry::Factory);
- virtual void draw(GrContextFactory*) SK_OVERRIDE;
- virtual bool shouldSkip() const SK_OVERRIDE;
- virtual SkString name() const SK_OVERRIDE { return fName; }
+ void draw(GrContextFactory*) SK_OVERRIDE;
+ bool shouldSkip() const SK_OVERRIDE;
+ SkString name() const SK_OVERRIDE { return fName; }
private:
TestReporter fTestReporter;
« no previous file with comments | « dm/DMSerializeTask.h ('k') | dm/DMWriteTask.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698