Index: src/pdf/SkPDFShader.cpp |
diff --git a/src/pdf/SkPDFShader.cpp b/src/pdf/SkPDFShader.cpp |
index 7023cfcd430ffea97036b4194595d055a44c8ded..40f7d93f8907b30ab5c9ae191c449c60fa292879 100644 |
--- a/src/pdf/SkPDFShader.cpp |
+++ b/src/pdf/SkPDFShader.cpp |
@@ -515,7 +515,7 @@ public: |
fResources.unrefAll(); |
} |
- virtual bool isValid() SK_OVERRIDE { return fResources.count() > 0; } |
+ bool isValid() SK_OVERRIDE { return fResources.count() > 0; } |
void getResources(const SkTSet<SkPDFObject*>& knownResourceObjects, |
SkTSet<SkPDFObject*>* newResourceObjects) SK_OVERRIDE { |
@@ -548,7 +548,7 @@ public: |
} |
} |
- virtual bool isValid() SK_OVERRIDE { |
+ bool isValid() SK_OVERRIDE { |
return fColorShader.get() != NULL; |
} |
@@ -578,7 +578,7 @@ public: |
fResources.unrefAll(); |
} |
- virtual bool isValid() SK_OVERRIDE { return size() > 0; } |
+ bool isValid() SK_OVERRIDE { return size() > 0; } |
void getResources(const SkTSet<SkPDFObject*>& knownResourceObjects, |
SkTSet<SkPDFObject*>* newResourceObjects) SK_OVERRIDE { |