update callers to not use SkColorProfileType

Requires https://codereview.chromium.org/2087833002/ to land first.

BUG=skia:
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2086583002

Review-Url: https://codereview.chromium.org/2086583002
diff --git a/include/core/SkImageInfo.h b/include/core/SkImageInfo.h
index ba4f850..b45ee38 100644
--- a/include/core/SkImageInfo.h
+++ b/include/core/SkImageInfo.h
@@ -13,8 +13,6 @@
 #include "SkRect.h"
 #include "SkSize.h"
 
-#define SK_SUPPORT_LEGACY_COLORPROFILETYPE
-
 class SkReadBuffer;
 class SkWriteBuffer;
 
@@ -220,8 +218,8 @@
     /**
      *  Sets colortype to the native ARGB32 type, and the alphatype to premul.
      */
-    static SkImageInfo MakeN32Premul(int width, int height) {
-        return Make(width, height, kN32_SkColorType, kPremul_SkAlphaType, nullptr);
+    static SkImageInfo MakeN32Premul(int width, int height, sk_sp<SkColorSpace> cs = nullptr) {
+        return Make(width, height, kN32_SkColorType, kPremul_SkAlphaType, cs);
     }
 
     static SkImageInfo MakeN32Premul(const SkISize& size) {