Rename GrSurfaceContext -> skgpu::SurfaceContext

Almost entirely mechanical.

Bug: skia:11837
Change-Id: I984339097fdeeae2eccb6c1d790d510020511961
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/438177
Reviewed-by: Michael Ludwig <michaelludwig@google.com>
Reviewed-by: Brian Salomon <bsalomon@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
diff --git a/tests/GrSurfaceTest.cpp b/tests/GrSurfaceTest.cpp
index 525788c..2390d75 100644
--- a/tests/GrSurfaceTest.cpp
+++ b/tests/GrSurfaceTest.cpp
@@ -18,9 +18,9 @@
 #include "src/gpu/GrProxyProvider.h"
 #include "src/gpu/GrRenderTarget.h"
 #include "src/gpu/GrResourceProvider.h"
-#include "src/gpu/GrSurfaceContext.h"
 #include "src/gpu/GrTexture.h"
 #include "src/gpu/SkGr.h"
+#include "src/gpu/SurfaceContext.h"
 #include "tests/Test.h"
 #include "tests/TestUtils.h"
 #include "tools/gpu/BackendTextureImageFactory.h"
@@ -293,12 +293,12 @@
                                          nullptr,
                                          {desc.fHeight, desc.fHeight});
 
-                        auto sc = GrSurfaceContext::Make(dContext,
-                                                         info,
-                                                         combo.fFormat,
-                                                         fit,
-                                                         kTopLeft_GrSurfaceOrigin,
-                                                         renderable);
+                        auto sc = skgpu::SurfaceContext::Make(dContext,
+                                                              info,
+                                                              combo.fFormat,
+                                                              fit,
+                                                              kTopLeft_GrSurfaceOrigin,
+                                                              renderable);
                         if (!sc) {
                             continue;
                         }