OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2007 Apple Computer, Inc. | 2 * Copyright (C) 2006, 2007 Apple Computer, Inc. |
3 * Copyright (c) 2006, 2007, 2008, 2009, Google Inc. All rights reserved. | 3 * Copyright (c) 2006, 2007, 2008, 2009, Google Inc. All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 28 matching lines...) Expand all Loading... |
39 #include "platform/fonts/FontOrientation.h" | 39 #include "platform/fonts/FontOrientation.h" |
40 #include "platform/fonts/opentype/OpenTypeVerticalData.h" | 40 #include "platform/fonts/opentype/OpenTypeVerticalData.h" |
41 #include "wtf/Forward.h" | 41 #include "wtf/Forward.h" |
42 #include "wtf/HashTableDeletedValueType.h" | 42 #include "wtf/HashTableDeletedValueType.h" |
43 #include "wtf/OwnPtr.h" | 43 #include "wtf/OwnPtr.h" |
44 #include "wtf/PassRefPtr.h" | 44 #include "wtf/PassRefPtr.h" |
45 #include "wtf/RefCounted.h" | 45 #include "wtf/RefCounted.h" |
46 #include "wtf/RefPtr.h" | 46 #include "wtf/RefPtr.h" |
47 #include "wtf/text/StringImpl.h" | 47 #include "wtf/text/StringImpl.h" |
48 | 48 |
49 #include <usp10.h> | |
50 | |
51 typedef struct HFONT__ *HFONT; | |
52 | |
53 namespace WebCore { | 49 namespace WebCore { |
54 | 50 |
55 class FontDescription; | 51 class FontDescription; |
56 class GraphicsContext; | 52 class GraphicsContext; |
57 class HarfBuzzFace; | 53 class HarfBuzzFace; |
58 | 54 |
59 class PLATFORM_EXPORT FontPlatformData { | 55 class PLATFORM_EXPORT FontPlatformData { |
60 public: | 56 public: |
61 // Used for deleted values in the font cache's hash tables. The hash table | 57 // Used for deleted values in the font cache's hash tables. The hash table |
62 // will create us with this structure, and it will compare other values | 58 // will create us with this structure, and it will compare other values |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 | 112 |
117 mutable RefPtr<HarfBuzzFace> m_harfBuzzFace; | 113 mutable RefPtr<HarfBuzzFace> m_harfBuzzFace; |
118 | 114 |
119 bool m_isHashTableDeletedValue; | 115 bool m_isHashTableDeletedValue; |
120 bool m_useSubpixelPositioning; | 116 bool m_useSubpixelPositioning; |
121 }; | 117 }; |
122 | 118 |
123 } // WebCore | 119 } // WebCore |
124 | 120 |
125 #endif // FontPlatformDataChromiumWin_h | 121 #endif // FontPlatformDataChromiumWin_h |
OLD | NEW |