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

Side by Side Diff: include/ports/SkTypeface_win.h

Issue 206683002: A remotable font management interface and DirectWrite implementation. (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 6 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright 2011 Google Inc. 2 * Copyright 2011 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SkTypeface_win_DEFINED 8 #ifndef SkTypeface_win_DEFINED
9 #define SkTypeface_win_DEFINED 9 #define SkTypeface_win_DEFINED
10 10
(...skipping 21 matching lines...) Expand all
32 * remotely (re)loaded. 32 * remotely (re)loaded.
33 */ 33 */
34 SK_API void SkTypeface_SetEnsureLOGFONTAccessibleProc(void (*)(const LOGFONT&)); 34 SK_API void SkTypeface_SetEnsureLOGFONTAccessibleProc(void (*)(const LOGFONT&));
35 35
36 // Experimental! 36 // Experimental!
37 // 37 //
38 class SkFontMgr; 38 class SkFontMgr;
39 SK_API SkFontMgr* SkFontMgr_New_GDI(); 39 SK_API SkFontMgr* SkFontMgr_New_GDI();
40 SK_API SkFontMgr* SkFontMgr_New_DirectWrite(); 40 SK_API SkFontMgr* SkFontMgr_New_DirectWrite();
41 41
42 class SkRemotableFontMgr;
43 SK_API SkRemotableFontMgr* SkRemotableFontMgr_New_DirectWrite();
44
42 #endif 45 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698