Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(388)

Unified Diff: include/core/SkPostConfig.h

Issue 1272293004: Move SkTemplates.h to private. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Additional change for working around Chromium. Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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)])

Powered by Google App Engine
This is Rietveld 408576698