Fix missing "class" in friend decls in GrEffect.h



git-svn-id: http://skia.googlecode.com/svn/trunk@7223 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/include/gpu/GrEffect.h b/include/gpu/GrEffect.h
index 431159c..99a26ee 100644
--- a/include/gpu/GrEffect.h
+++ b/include/gpu/GrEffect.h
@@ -38,7 +38,7 @@
     void operator delete(void* target);
 
 private:
-    friend GrEffect; // to construct these
+    friend class GrEffect; // to construct these
 
     explicit GrEffectRef(GrEffect* effect);
 
@@ -171,7 +171,7 @@
         fEffectPtr = NULL;
     }
 
-    friend GrEffectRef; // to call GrEffectRef destroyed
+    friend class GrEffectRef; // to call GrEffectRef destroyed
 
     SkSTArray<4, const GrTextureAccess*, true>  fTextureAccesses;
     GrEffectRef*                                fEffectPtr;