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

Unified Diff: dm/DMTask.h

Issue 76903002: Fix a warning building DM using ninja on Mac. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 1 month 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 | « no previous file | dm/DMTask.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dm/DMTask.h
diff --git a/dm/DMTask.h b/dm/DMTask.h
index 744fd6bb9c0634fcee000e09960ea1eadfa91e71..5388196ffdb6f7c0b7e85a2c31b74354678e44f7 100644
--- a/dm/DMTask.h
+++ b/dm/DMTask.h
@@ -21,7 +21,7 @@ public:
Task(const Task& that);
virtual ~Task();
- void run();
+ void run() SK_OVERRIDE;
virtual void draw() = 0;
virtual bool usesGpu() const = 0;
@@ -36,6 +36,8 @@ private:
// Both unowned.
Reporter* fReporter;
TaskRunner* fTaskRunner;
+
+ typedef SkRunnable INHERITED;
};
} // namespace DM
« no previous file with comments | « no previous file | dm/DMTask.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698