Index: include/gpu/GrContext.h |
diff --git a/include/gpu/GrContext.h b/include/gpu/GrContext.h |
index df96592e07788bda47508dc1a645c6ecac494d06..70e7b9f2441ce424aeb9cbf8ee904f5af47a1cc1 100644 |
--- a/include/gpu/GrContext.h |
+++ b/include/gpu/GrContext.h |
@@ -335,11 +335,12 @@ public: |
/** Prints cache stats to the string if GR_CACHE_STATS == 1. */ |
void dumpCacheStats(SkString*) const; |
+ void dumpCacheStatsKeyValuePairs(SkTArray<SkString>* keys, SkTArray<double>* values) const; |
void printCacheStats() const; |
/** Prints GPU stats to the string if GR_GPU_STATS == 1. */ |
void dumpGpuStats(SkString*) const; |
- void dumpGpuStatsKeyValuePairs(SkTArray<SkString>* names, SkTArray<double>* values) const; |
+ void dumpGpuStatsKeyValuePairs(SkTArray<SkString>* keys, SkTArray<double>* values) const; |
void printGpuStats() const; |
/** Specify the TextBlob cache limit. If the current cache exceeds this limit it will purge. |