Index: src/gpu/GrTextStrike_impl.h |
diff --git a/src/gpu/GrTextStrike_impl.h b/src/gpu/GrTextStrike_impl.h |
index 48323bcc251cfda3fbaaa15ea605350f4bef722d..466e448de7ceecd8c16adb4f97f33fabe0b71f6f 100644 |
--- a/src/gpu/GrTextStrike_impl.h |
+++ b/src/gpu/GrTextStrike_impl.h |
@@ -32,18 +32,18 @@ private: |
void GrFontCache::detachStrikeFromList(GrTextStrike* strike) { |
if (strike->fPrev) { |
- GrAssert(fHead != strike); |
+ SkASSERT(fHead != strike); |
strike->fPrev->fNext = strike->fNext; |
} else { |
- GrAssert(fHead == strike); |
+ SkASSERT(fHead == strike); |
fHead = strike->fNext; |
} |
if (strike->fNext) { |
- GrAssert(fTail != strike); |
+ SkASSERT(fTail != strike); |
strike->fNext->fPrev = strike->fPrev; |
} else { |
- GrAssert(fTail == strike); |
+ SkASSERT(fTail == strike); |
fTail = strike->fPrev; |
} |
} |