3546ff10c2
All the SkFontMgr factories currently return bare pointers and sometimes even document the ownership rules. Since such factories can be implemented by external ports, the ownership rules should be explicit in order to prevent simple reference counting issues. Change-Id: I25b598ce0954cd473a3fb1f8adc0cb86331583ca Reviewed-on: https://skia-review.googlesource.com/6533 Reviewed-by: Florin Malita <fmalita@chromium.org> Reviewed-by: Mike Reed <reed@google.com> Commit-Queue: Ben Wagner <bungeman@google.com>
25 lines
644 B
C++
25 lines
644 B
C++
/*
|
|
* Copyright 2016 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef SkFontMgr_FontConfigInterface_DEFINED
|
|
#define SkFontMgr_FontConfigInterface_DEFINED
|
|
|
|
#include "SkTypes.h"
|
|
#include "SkRefCnt.h"
|
|
|
|
class SkFontMgr;
|
|
class SkFontConfigInterface;
|
|
|
|
/** Creates a SkFontMgr which wraps a SkFontConfigInterface. */
|
|
#ifdef SK_LEGACY_FONTMGR_FACTORY
|
|
SK_API SkFontMgr* SkFontMgr_New_FCI(sk_sp<SkFontConfigInterface> fci);
|
|
#else
|
|
SK_API sk_sp<SkFontMgr> SkFontMgr_New_FCI(sk_sp<SkFontConfigInterface> fci);
|
|
#endif
|
|
|
|
#endif // #ifndef SkFontMgr_FontConfigInterface_DEFINED
|