Fix font GMs

Disables font cache dump for now

R=robertphillips@google.com

Review URL: https://codereview.chromium.org/25605007

git-svn-id: http://skia.googlecode.com/svn/trunk@11584 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/src/gpu/GrTextStrike.cpp b/src/gpu/GrTextStrike.cpp
index 7cab335..4a56051 100644
--- a/src/gpu/GrTextStrike.cpp
+++ b/src/gpu/GrTextStrike.cpp
@@ -173,6 +173,7 @@
 
 #ifdef SK_DEVELOPER
 void GrFontCache::dump() const {
+/*  Disabled for now
     static int gDumpCount = 0;
     for (int i = 0; i < kMaskFormatCount; ++i) {
         if (NULL != fAtlasMgr[i]) {
@@ -185,6 +186,7 @@
         }
     }
     ++gDumpCount;
+*/
 }
 #endif