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

Side by Side Diff: skia/ext/skia_sandbox_support_win.h

Issue 11363008: Fix for 128506: Random Chinese/Japanese characters are missing in documents printed via the syst... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Created 8 years, 1 month 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 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef SKIA_EXT_SKIA_SANDBOX_SUPPORT_WIN_H_ 5 #ifndef SKIA_EXT_SKIA_SANDBOX_SUPPORT_WIN_H_
6 #define SKIA_EXT_SKIA_SANDBOX_SUPPORT_WIN_H_ 6 #define SKIA_EXT_SKIA_SANDBOX_SUPPORT_WIN_H_
7 7
8 #include <windows.h> 8 #include <windows.h>
9 9
10 #include "SkPreConfig.h" 10 #include "SkPreConfig.h"
11 11
12 typedef void (*SkiaEnsureTypefaceAccessible)(const LOGFONT& font); 12 typedef void (*SkiaEnsureTypefaceAccessible)(const LOGFONT& font);
13 typedef void (*SkiaEnsureTypefaceCharactersAccessible)
14 (const LOGFONT& font, const wchar_t* text, unsigned int text_length);
13 15
14 SK_API void SetSkiaEnsureTypefaceAccessible(SkiaEnsureTypefaceAccessible func); 16 SK_API void SetSkiaEnsureTypefaceAccessible(SkiaEnsureTypefaceAccessible func);
17 SK_API void SetSkiaEnsureTypefaceCharactersAccessible(
18 SkiaEnsureTypefaceCharactersAccessible func);
15 19
16 #endif // SKIA_EXT_SKIA_SANDBOX_SUPPORT_WIN_H_ 20 #endif // SKIA_EXT_SKIA_SANDBOX_SUPPORT_WIN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698