Use skpathutils in *all* usages of FillPathWithPaint

In https://pdfium-review.googlesource.com/c/pdfium/+/102650 I forgot
two usages.

Change-Id: I86bee92a393e2129fdcbe93d90b3f51ad9f98cb0
Reviewed-on: https://pdfium-review.googlesource.com/c/pdfium/+/102790
Auto-Submit: Kevin Lubick <kjlubick@google.com>
Reviewed-by: Lei Zhang <thestig@chromium.org>
Commit-Queue: Lei Zhang <thestig@chromium.org>
diff --git a/core/fxge/skia/fx_skia_device.cpp b/core/fxge/skia/fx_skia_device.cpp
index 449f6b0..526a74d 100644
--- a/core/fxge/skia/fx_skia_device.cpp
+++ b/core/fxge/skia/fx_skia_device.cpp
@@ -1053,7 +1053,7 @@
     SkPaint skPaint;
     m_pDriver->PaintStroke(&skPaint, pGraphState, skMatrix);
     SkPath dst_path;
-    FillPathWithPaint(skPath, skPaint, &dst_path);
+    skpathutils::FillPathWithPaint(skPath, skPaint, &dst_path);
     dst_path.transform(skMatrix);
     SetClip(dst_path);
   }
@@ -1622,7 +1622,7 @@
   SkPaint skPaint;
   PaintStroke(&skPaint, pGraphState, skMatrix);
   SkPath dst_path;
-  FillPathWithPaint(skPath, skPaint, &dst_path);
+  skpathutils::FillPathWithPaint(skPath, skPaint, &dst_path);
   dst_path.transform(skMatrix);
   DebugShowCanvasClip(this, m_pCanvas);
   return true;