Rename GrThreadSafeUniquelyKeyedProxyViewCache

Once triangulated paths are added this will no longer just be storing proxy views.

Bug: 1108408
Change-Id: I82fa47b0b85f738d9a25330c29bc2892c9bfeda4
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/323999
Reviewed-by: Brian Salomon <bsalomon@google.com>
Reviewed-by: Adlai Holler <adlai@google.com>
Commit-Queue: Robert Phillips <robertphillips@google.com>
diff --git a/include/gpu/GrContextThreadSafeProxy.h b/include/gpu/GrContextThreadSafeProxy.h
index 04e49e4..00b111e 100644
--- a/include/gpu/GrContextThreadSafeProxy.h
+++ b/include/gpu/GrContextThreadSafeProxy.h
@@ -19,7 +19,7 @@
 class GrCaps;
 class GrContextThreadSafeProxyPriv;
 class GrTextBlobCache;
-class GrThreadSafeUniquelyKeyedProxyViewCache;
+class GrThreadSafeCache;
 class SkSurfaceCharacterization;
 class SkSurfaceProps;
 
@@ -113,13 +113,13 @@
     // `init` method on GrContext_Base).
     void init(sk_sp<const GrCaps>);
 
-    const GrBackendApi               fBackend;
-    const GrContextOptions           fOptions;
-    const uint32_t                   fContextID;
-    sk_sp<const GrCaps>              fCaps;
-    std::unique_ptr<GrTextBlobCache> fTextBlobCache;
-    std::unique_ptr<GrThreadSafeUniquelyKeyedProxyViewCache> fThreadSafeViewCache;
-    std::atomic<bool>                fAbandoned{false};
+    const GrBackendApi                 fBackend;
+    const GrContextOptions             fOptions;
+    const uint32_t                     fContextID;
+    sk_sp<const GrCaps>                fCaps;
+    std::unique_ptr<GrTextBlobCache>   fTextBlobCache;
+    std::unique_ptr<GrThreadSafeCache> fThreadSafeCache;
+    std::atomic<bool>                  fAbandoned{false};
 };
 
 #endif