| Index: src/core/SkFontMgr.cpp
|
| diff --git a/src/core/SkFontMgr.cpp b/src/core/SkFontMgr.cpp
|
| index ca29e293efb1c5e606aef198dae217bda5a0616a..c487efa09a0ecce74303bfddea3ba7ecb7b1edc1 100644
|
| --- a/src/core/SkFontMgr.cpp
|
| +++ b/src/core/SkFontMgr.cpp
|
| @@ -7,6 +7,7 @@
|
|
|
| #include "SkFontMgr.h"
|
| #include "SkLazyPtr.h"
|
| +#include "SkStream.h"
|
| #include "SkTypes.h"
|
|
|
| class SkFontStyle;
|
| @@ -68,7 +69,8 @@ protected:
|
| SkTypeface* onCreateFromData(SkData*, int) const SK_OVERRIDE {
|
| return NULL;
|
| }
|
| - SkTypeface* onCreateFromStream(SkStream*, int) const SK_OVERRIDE {
|
| + SkTypeface* onCreateFromStream(SkStream* stream, int) const SK_OVERRIDE {
|
| + SkDELETE(stream);
|
| return NULL;
|
| }
|
| SkTypeface* onCreateFromFile(const char[], int) const SK_OVERRIDE {
|
|
|