diff options
author | bungeman <bungeman@google.com> | 2015-02-23 08:25:00 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-02-23 08:25:00 -0800 |
commit | 7be2eb89cc85fc9fc05814957d152f3d20613657 (patch) | |
tree | 8550f3262ef404cb556783ff63f1c498534308d8 /include/ports | |
parent | e2b580bbed5589f585a9672bfb1a539fdadeab5f (diff) |
Remove SkFontHost includes and friends.
SkFontHost no longer exists as a class, so remove the includes and stop
making it a friend.
Review URL: https://codereview.chromium.org/943333004
Diffstat (limited to 'include/ports')
-rw-r--r-- | include/ports/SkFontConfigInterface.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/ports/SkFontConfigInterface.h b/include/ports/SkFontConfigInterface.h index 8c084a67b6..d8b27c086f 100644 --- a/include/ports/SkFontConfigInterface.h +++ b/include/ports/SkFontConfigInterface.h @@ -19,8 +19,8 @@ struct SkBaseMutex; /** * \class SkFontConfigInterface * - * Provides SkFontHost clients with access to fontconfig services. They will - * access the global instance found in RefGlobal(). + * A simple interface for remotable font management. + * The global instance can be found with RefGlobal(). */ class SK_API SkFontConfigInterface : public SkRefCnt { public: @@ -99,8 +99,7 @@ public: * libfontconfig. This does not affect the refcnt of the returned instance. * The mutex may be used to guarantee the singleton is only constructed once. */ - static SkFontConfigInterface* GetSingletonDirectInterface - (SkBaseMutex* mutex = NULL); + static SkFontConfigInterface* GetSingletonDirectInterface(SkBaseMutex* mutex = NULL); // New APIS, which have default impls for now (which do nothing) |