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

Unified Diff: include/effects/SkTransparentShader.h

Issue 267923005: remove unneeded SkShader::validContext (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 6 years, 8 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/effects/SkTransparentShader.h
diff --git a/include/effects/SkTransparentShader.h b/include/effects/SkTransparentShader.h
index 55513eb53208796f87490a100a5f6d42686bf067..d9a3e5d7a1975523e3b8ac317979d571f57d2486 100644
--- a/include/effects/SkTransparentShader.h
+++ b/include/effects/SkTransparentShader.h
@@ -14,8 +14,6 @@ class SK_API SkTransparentShader : public SkShader {
public:
SkTransparentShader() {}
- virtual SkShader::Context* createContext(const ContextRec&, void* storage) const
- SK_OVERRIDE;
virtual size_t contextSize() const SK_OVERRIDE;
class TransparentShaderContext : public SkShader::Context {
@@ -36,6 +34,9 @@ public:
SK_TO_STRING_OVERRIDE()
SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkTransparentShader)
+protected:
+ virtual Context* onCreateContext(const ContextRec&, void* storage) const SK_OVERRIDE;
+
private:
SkTransparentShader(SkReadBuffer& buffer) : INHERITED(buffer) {}

Powered by Google App Engine
This is Rietveld 408576698