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

Unified Diff: src/effects/SkLumaXfermode.cpp

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 | « src/effects/SkLightingImageFilter.cpp ('k') | src/effects/SkTableColorFilter.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/effects/SkLumaXfermode.cpp
diff --git a/src/effects/SkLumaXfermode.cpp b/src/effects/SkLumaXfermode.cpp
index a23e010366ead4e21cc6251ec75c80097994460d..96050f95f2ad14682a32e3f885b692aadbc4654d 100644
--- a/src/effects/SkLumaXfermode.cpp
+++ b/src/effects/SkLumaXfermode.cpp
@@ -18,6 +18,8 @@
#endif
class SkLumaMaskXfermodeSrcOver : public SkLumaMaskXfermode {
+ typedef SkLumaMaskXfermode INHERITED;
+
public:
SkLumaMaskXfermodeSrcOver();
@@ -27,7 +29,6 @@ protected:
SkLumaMaskXfermodeSrcOver(SkFlattenableReadBuffer&);
private:
- typedef SkLumaMaskXfermode INHERITED;
virtual SkPMColor lumaProc(const SkPMColor a, const SkPMColor b) const;
};
« no previous file with comments | « src/effects/SkLightingImageFilter.cpp ('k') | src/effects/SkTableColorFilter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698