Reland "rename MakePath to Make"

This is a reland of 36132b2aeab8ad2569941e6fde69ffec49a69919

Original change's description:
> rename MakePath to Make
> 
> Change-Id: Ibdee0835308401fce99ff9e4d98486c4808f84a2
> Reviewed-on: https://skia-review.googlesource.com/c/skia/+/302683
> Reviewed-by: Herb Derby <herb@google.com>
> Commit-Queue: Herb Derby <herb@google.com>

Change-Id: I36c1c0625af8e9afff34d891995ca7aff8f169bf
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/302896
Reviewed-by: Herb Derby <herb@google.com>
Reviewed-by: Robert Phillips <robertphillips@google.com>
Commit-Queue: Herb Derby <herb@google.com>
diff --git a/src/gpu/text/GrTextBlob.cpp b/src/gpu/text/GrTextBlob.cpp
index c990744..a9b99a7 100644
--- a/src/gpu/text/GrTextBlob.cpp
+++ b/src/gpu/text/GrTextBlob.cpp
@@ -108,7 +108,7 @@
 }
 
 
-auto GrPathSubRun::MakePaths(
+auto GrPathSubRun::Make(
         const SkZip<SkGlyphVariant, SkPoint>& drawables,
         bool isAntiAliased,
         const SkStrikeSpec& strikeSpec,
@@ -870,10 +870,10 @@
                                     const SkFont& runFont,
                                     const SkStrikeSpec& strikeSpec) {
     this->setHasBitmap();
-    GrSubRun* subRun = GrPathSubRun::MakePaths(drawables,
-                                               runFont.hasSomeAntiAliasing(),
-                                               strikeSpec,
-                                               &fAlloc);
+    GrSubRun* subRun = GrPathSubRun::Make(drawables,
+                                          runFont.hasSomeAntiAliasing(),
+                                          strikeSpec,
+                                          &fAlloc);
     this->insertSubRun(subRun);
 }
 
diff --git a/src/gpu/text/GrTextBlob.h b/src/gpu/text/GrTextBlob.h
index ba1bcd8..9e3c539 100644
--- a/src/gpu/text/GrTextBlob.h
+++ b/src/gpu/text/GrTextBlob.h
@@ -204,10 +204,10 @@
               const SkGlyphRunList& glyphRunList,
               GrRenderTargetContext* rtc) override;
 
-    static GrSubRun* MakePaths(const SkZip<SkGlyphVariant, SkPoint>& drawables,
-                               bool isAntiAliased,
-                               const SkStrikeSpec& strikeSpec,
-                               SkArenaAlloc* alloc);
+    static GrSubRun* Make(const SkZip<SkGlyphVariant, SkPoint>& drawables,
+                          bool isAntiAliased,
+                          const SkStrikeSpec& strikeSpec,
+                          SkArenaAlloc* alloc);
 
 private:
     struct PathGlyph {