| Index: src/gpu/gl/GrGLSL.cpp
 | 
| diff --git a/src/gpu/gl/GrGLSL.cpp b/src/gpu/gl/GrGLSL.cpp
 | 
| index a7948cc4bcd4f98af5ba7c682d255d29d2b7712d..1ff0850a1db5d89768894f6aed5c1f4e53630ce0 100644
 | 
| --- a/src/gpu/gl/GrGLSL.cpp
 | 
| +++ b/src/gpu/gl/GrGLSL.cpp
 | 
| @@ -67,7 +67,7 @@ namespace {
 | 
|      void append_tabs(SkString* outAppend, int tabCnt) {
 | 
|          static const char kTabs[] = "\t\t\t\t\t\t\t\t";
 | 
|          while (tabCnt) {
 | 
| -            int cnt = GrMin((int)GR_ARRAY_COUNT(kTabs), tabCnt);
 | 
| +            int cnt = SkTMin((int)SK_ARRAY_COUNT(kTabs), tabCnt);
 | 
|              outAppend->append(kTabs, cnt);
 | 
|              tabCnt -= cnt;
 | 
|          }
 | 
| 
 |