Animated the PathUtils Sample to show path contours# Enter a description of the change.



Animated the PathUtils Sample to path contours

BUG=
R=reed@google.com, scroggo@google.com, djsollen@google.com

Author: dierk@google.com

Review URL: https://chromiumcodereview.appspot.com/18552005

git-svn-id: http://skia.googlecode.com/svn/trunk@9934 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/include/utils/SkPathUtils.h b/include/utils/SkPathUtils.h
index 4ab819c..a27cbb8 100644
--- a/include/utils/SkPathUtils.h
+++ b/include/utils/SkPathUtils.h
@@ -25,7 +25,7 @@
        all binary data the path is simplified using the PathOps::Simplify() method.
     */
     static void BitsToPath_Path(SkPath* path, const char* bitmap,
-                            int h, int w, int stride);
+                            int w, int h, int rowBytes);
 
     /**
        This variation utilizes the SkRegion class to generate paths, adding
@@ -33,7 +33,7 @@
        of the binary the SkRegion is converted to a Path via getBoundaryPath().
     */
     static void BitsToPath_Region(SkPath* path, const char* bitmap,
-                                   int h, int w, int stride);
+                                   int w, int h, int rowBytes);
 
 };