Just a typo. Rename StrokeRect to StrokeRects in strokerects.cpp, making it different from the class name in  strokerect.cpp for debugging.

R=bungeman@google.com, reed@google.com

Author: yunchao.he@intel.com

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

git-svn-id: http://skia.googlecode.com/svn/trunk@12557 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/gm/strokerects.cpp b/gm/strokerects.cpp
index 88641da..6abb89f 100644
--- a/gm/strokerects.cpp
+++ b/gm/strokerects.cpp
@@ -20,9 +20,9 @@
 static const SkScalar SW = SkIntToScalar(W);
 static const SkScalar SH = SkIntToScalar(H);
 
-class StrokeRectGM : public GM {
+class StrokeRectsGM : public GM {
 public:
-    StrokeRectGM() {}
+    StrokeRectsGM() {}
 
 protected:
     virtual SkString onShortName() {
@@ -77,7 +77,7 @@
 
 //////////////////////////////////////////////////////////////////////////////
 
-static GM* MyFactory(void*) { return new StrokeRectGM; }
+static GM* MyFactory(void*) { return new StrokeRectsGM; }
 static GMRegistry reg(MyFactory);
 
 }