| Index: src/gpu/GrTextBlobCache.h
|
| diff --git a/src/gpu/GrTextBlobCache.h b/src/gpu/GrTextBlobCache.h
|
| index 5f24e2ac1626f11d77deb3be1fac4bf3f651c933..8eee9d13db0360d1fdc0353bf85d1052b1ab1178 100644
|
| --- a/src/gpu/GrTextBlobCache.h
|
| +++ b/src/gpu/GrTextBlobCache.h
|
| @@ -10,7 +10,7 @@
|
|
|
| #include "GrAtlasTextContext.h"
|
| #include "SkTDynamicHash.h"
|
| -#include "SkTextBlob.h"
|
| +#include "SkTextBlobRunIterator.h"
|
|
|
| class GrTextBlobCache {
|
| public:
|
| @@ -98,7 +98,7 @@ public:
|
|
|
| // TODO move to SkTextBlob
|
| static void BlobGlyphCount(int* glyphCount, int* runCount, const SkTextBlob* blob) {
|
| - SkTextBlob::RunIterator itCounter(blob);
|
| + SkTextBlobRunIterator itCounter(blob);
|
| for (; !itCounter.done(); itCounter.next(), (*runCount)++) {
|
| *glyphCount += itCounter.glyphCount();
|
| }
|
|
|