Add missing include for std::begin and std::end in SkParseColor.cpp

Change-Id: I51f6766271cfcc2dff7fc30e3f7439c4580cbb6a
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/533981
Reviewed-by: Brian Salomon <bsalomon@google.com>
Commit-Queue: Brian Salomon <bsalomon@google.com>
diff --git a/AUTHORS b/AUTHORS
index dc06975..db2fac8 100755
--- a/AUTHORS
+++ b/AUTHORS
@@ -76,6 +76,7 @@
 LG Electronics <*@lge.com>
 Shekhar Dutta <sherlockdoyle1904@gmail.com>
 ColdPaleLight <coldpalelight@gmail.com>
+Jordan Williams <jordan@jwillikers.com>
 
 # Trusted service accounts.
 Recipe roller SA <recipe-mega-autoroller@chops-service-accounts.iam.gserviceaccount.com>
diff --git a/src/utils/SkParseColor.cpp b/src/utils/SkParseColor.cpp
index 3164650..0dc3497 100644
--- a/src/utils/SkParseColor.cpp
+++ b/src/utils/SkParseColor.cpp
@@ -9,6 +9,7 @@
 #include "include/utils/SkParse.h"
 
 #include <algorithm> // std::lower_bound
+#include <iterator>
 
 static constexpr const char* gColorNames[] = {
     "aliceblue",