| Index: src/gpu/GrBatchFontCache.h
|
| diff --git a/src/gpu/GrBatchFontCache.h b/src/gpu/GrBatchFontCache.h
|
| index 32c3281a711a49f5deb017d09a348896eb388f4d..5d57221b68c9561d5f3083b2dbfe1af87410556f 100644
|
| --- a/src/gpu/GrBatchFontCache.h
|
| +++ b/src/gpu/GrBatchFontCache.h
|
| @@ -200,7 +200,7 @@ private:
|
| bool initAtlas(GrMaskFormat);
|
|
|
| GrBatchTextStrike* generateStrike(GrFontScaler* scaler) {
|
| - GrBatchTextStrike* strike = SkNEW_ARGS(GrBatchTextStrike, (this, scaler->getKey()));
|
| + GrBatchTextStrike* strike = new GrBatchTextStrike(this, scaler->getKey());
|
| fCache.add(strike);
|
| return strike;
|
| }
|
|
|