Enforce calling of inherited onRelease & onAbandon mthds in GrResource-derived classes

http://codereview.appspot.com/6499077/



git-svn-id: http://skia.googlecode.com/svn/trunk@5405 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/gpu/gl/GrGLPath.cpp b/src/gpu/gl/GrGLPath.cpp
index 95e11f2..5324dcd 100644
--- a/src/gpu/gl/GrGLPath.cpp
+++ b/src/gpu/gl/GrGLPath.cpp
@@ -94,9 +94,13 @@
         GL_CALL(DeletePaths(fPathID, 1));
         fPathID = 0;
     }
+
+    INHERITED::onRelease();
 }
 
 void GrGLPath::onAbandon() {
     fPathID = 0;
+
+    INHERITED::onAbandon();
 }