Chromium Code Reviews| Index: skia/ext/skia_sandbox_support_win.h |
| diff --git a/skia/ext/skia_sandbox_support_win.h b/skia/ext/skia_sandbox_support_win.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..b2162f9dbf28202c1b2f5212e6e126042f27ceb3 |
| --- /dev/null |
| +++ b/skia/ext/skia_sandbox_support_win.h |
| @@ -0,0 +1,15 @@ |
| +// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef SKIA_EXT_SKIA_SANDBOX_SUPPORT_WIN_H_ |
| +#define SKIA_EXT_SKIA_SANDBOX_SUPPORT_WIN_H_ |
| +#pragma once |
| + |
| +typedef void (*SkiaEnsureTypefaceAccessible)(LOGFONT font); |
|
vandebo (ex-Chrome)
2011/11/22 18:23:41
predeclare LOGFONT or include the header if you ne
arthurhsu
2011/11/22 20:39:14
Done.
|
| + |
| +static SkiaEnsureTypefaceAccessible g_skia_ensure_typeface_accessible; |
|
jam
2011/11/22 18:16:58
don't need to expose this?
vandebo (ex-Chrome)
2011/11/22 18:23:41
Move the static to the .cc file?
arthurhsu
2011/11/22 20:39:14
Done.
arthurhsu
2011/11/22 20:39:14
Done.
|
| + |
| +SK_API void SetSkiaEnsureTypefaceAccessible(SkiaEnsureTypefaceAccessible); |
|
vandebo (ex-Chrome)
2011/11/22 18:23:41
Give the argument a name.
arthurhsu
2011/11/22 20:39:14
Done.
|
| + |
| +#endif // SKIA_EXT_SKIA_SANDBOX_SUPPORT_WIN_H_ |