From f20488b4f2139e6ca09fee7e39b731dd8ab467db Mon Sep 17 00:00:00 2001 From: bungeman Date: Wed, 29 Jul 2015 11:49:40 -0700 Subject: Clean up a few includes, introduce iwyu. The current include-what-you-use with current clang is much less noisy and more useful than it has been in the past. This change introduces a few IWYU directives (which are helpful documentation for humans as well) and fixes a few sets of includes. Review URL: https://codereview.chromium.org/1207893002 --- src/fonts/SkFontMgr_indirect.cpp | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'src/fonts/SkFontMgr_indirect.cpp') diff --git a/src/fonts/SkFontMgr_indirect.cpp b/src/fonts/SkFontMgr_indirect.cpp index 172d5412a6..6ad8bfbf47 100644 --- a/src/fonts/SkFontMgr_indirect.cpp +++ b/src/fonts/SkFontMgr_indirect.cpp @@ -5,17 +5,22 @@ * found in the LICENSE file. */ -#include "SkFontMgr_indirect.h" - #include "SkDataTable.h" +#include "SkFontMgr.h" +#include "SkFontMgr_indirect.h" #include "SkFontStyle.h" +#include "SkMutex.h" #include "SkOnce.h" +#include "SkRefCnt.h" +#include "SkRemotableFontMgr.h" #include "SkStream.h" -#include "SkTSearch.h" +#include "SkString.h" +#include "SkTArray.h" #include "SkTypeface.h" +#include "SkTypes.h" +#include "SkTemplates.h" class SkData; -class SkString; class SkStyleSet_Indirect : public SkFontStyleSet { public: -- cgit v1.2.3