Chromium Code Reviews| Index: include/core/SkPostConfig.h |
| diff --git a/include/core/SkPostConfig.h b/include/core/SkPostConfig.h |
| index 8ff1f06921d81464d5d2842e532ae2eb093caef5..f4ce1028584feaee49959d1ceed0d65fe64e4186 100644 |
| --- a/include/core/SkPostConfig.h |
| +++ b/include/core/SkPostConfig.h |
| @@ -101,6 +101,7 @@ |
| /////////////////////////////////////////////////////////////////////////////// |
| #ifndef SkNEW |
| +# include <new> |
|
bungeman-skia
2015/08/19 18:29:55
Forward declaring instead of including SkBitmapPro
|
| # define SkNEW(type_name) (new type_name) |
| # define SkNEW_ARGS(type_name, args) (new type_name args) |
| # define SkNEW_ARRAY(type_name, count) (new type_name[(count)]) |