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

Unified Diff: include/effects/SkTableMaskFilter.h

Issue 25430005: Fix for potential typedef issue Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 2 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 | « include/effects/SkStippleMaskFilter.h ('k') | include/effects/SkTestImageFilters.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/effects/SkTableMaskFilter.h
diff --git a/include/effects/SkTableMaskFilter.h b/include/effects/SkTableMaskFilter.h
index ac33266f80c04d089df8631dd2880c9e5df5834a..82684e3b6207f42902c937fef426432eef6ad0b3 100644
--- a/include/effects/SkTableMaskFilter.h
+++ b/include/effects/SkTableMaskFilter.h
@@ -17,6 +17,8 @@
Helper methods create some common tables (e.g. gamma, clipping)
*/
class SK_API SkTableMaskFilter : public SkMaskFilter {
+ typedef SkMaskFilter INHERITED;
+
public:
SkTableMaskFilter();
SkTableMaskFilter(const uint8_t table[256]);
@@ -56,8 +58,6 @@ protected:
private:
uint8_t fTable[256];
-
- typedef SkMaskFilter INHERITED;
};
#endif
« no previous file with comments | « include/effects/SkStippleMaskFilter.h ('k') | include/effects/SkTestImageFilters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698