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

Unified Diff: include/core/SkImageFilter.h

Issue 22799007: I'm investigating how to make the IPC transfer a bit more secure on the (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Minor tweaks Created 7 years, 4 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
Index: include/core/SkImageFilter.h
diff --git a/include/core/SkImageFilter.h b/include/core/SkImageFilter.h
index 7b9dd3217ed32e52cae9174e58c70a02db6ebe66..fd894256b8a8aa4f349d6fe7265d086bfc8f722e 100644
--- a/include/core/SkImageFilter.h
+++ b/include/core/SkImageFilter.h
@@ -153,6 +153,8 @@ protected:
explicit SkImageFilter(SkFlattenableReadBuffer& rb);
+ virtual bool isA(Type type) const { return (IMAGE_FILTER == type) || INHERITED::isA(type); }
+
virtual void flatten(SkFlattenableWriteBuffer& wb) const SK_OVERRIDE;
// Default impl returns false

Powered by Google App Engine
This is Rietveld 408576698