make growToInclude private

Bug: skia:
Change-Id: Id55344ba2f33563d22c2bf4d5829a9a31095a47d
Reviewed-on: https://skia-review.googlesource.com/92143
Commit-Queue: Mike Reed <reed@google.com>
Reviewed-by: Cary Clark <caryclark@google.com>
Reviewed-by: Brian Salomon <bsalomon@google.com>
diff --git a/tools/debugger/SkDrawCommand.cpp b/tools/debugger/SkDrawCommand.cpp
index 0c0d7ac..34189fa 100644
--- a/tools/debugger/SkDrawCommand.cpp
+++ b/tools/debugger/SkDrawCommand.cpp
@@ -21,6 +21,7 @@
 #include "SkPathEffect.h"
 #include "SkPicture.h"
 #include "SkReadBuffer.h"
+#include "SkRectPriv.h"
 #include "SkTextBlob.h"
 #include "SkTextBlobRunIterator.h"
 #include "SkTHash.h"
@@ -2741,7 +2742,7 @@
 
     bounds.setEmpty();
     for (unsigned int i = 0; i < fCount; ++i) {
-        bounds.growToInclude(fPts[i]);
+        SkRectPriv::GrowToInclude(&bounds, fPts[i]);
     }
 
     xlate_and_scale_to_bounds(canvas, bounds);