OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006, 2009 Apple Inc. All rights reserved. | 2 * Copyright (C) 2006, 2009 Apple Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions | 5 * modification, are permitted provided that the following conditions |
6 * are met: | 6 * are met: |
7 * | 7 * |
8 * 1. Redistributions of source code must retain the above copyright | 8 * 1. Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * 2. Redistributions in binary form must reproduce the above copyright | 10 * 2. Redistributions in binary form must reproduce the above copyright |
(...skipping 19 matching lines...) Expand all Loading... |
30 #define GlyphMetricsMap_h | 30 #define GlyphMetricsMap_h |
31 | 31 |
32 #include "platform/fonts/Glyph.h" | 32 #include "platform/fonts/Glyph.h" |
33 #include "platform/geometry/FloatRect.h" | 33 #include "platform/geometry/FloatRect.h" |
34 #include "wtf/Assertions.h" | 34 #include "wtf/Assertions.h" |
35 #include "wtf/HashMap.h" | 35 #include "wtf/HashMap.h" |
36 #include "wtf/OwnPtr.h" | 36 #include "wtf/OwnPtr.h" |
37 #include "wtf/PassOwnPtr.h" | 37 #include "wtf/PassOwnPtr.h" |
38 #include "wtf/unicode/Unicode.h" | 38 #include "wtf/unicode/Unicode.h" |
39 | 39 |
40 namespace WebCore { | 40 namespace blink { |
41 | 41 |
42 const float cGlyphSizeUnknown = -1; | 42 const float cGlyphSizeUnknown = -1; |
43 | 43 |
44 template<class T> class GlyphMetricsMap { | 44 template<class T> class GlyphMetricsMap { |
45 WTF_MAKE_NONCOPYABLE(GlyphMetricsMap); | 45 WTF_MAKE_NONCOPYABLE(GlyphMetricsMap); |
46 public: | 46 public: |
47 GlyphMetricsMap() : m_filledPrimaryPage(false) { } | 47 GlyphMetricsMap() : m_filledPrimaryPage(false) { } |
48 T metricsForGlyph(Glyph glyph) | 48 T metricsForGlyph(Glyph glyph) |
49 { | 49 { |
50 return locatePage(glyph / GlyphMetricsPage::size)->metricsForGlyph(glyph
); | 50 return locatePage(glyph / GlyphMetricsPage::size)->metricsForGlyph(glyph
); |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 m_pages->set(pageNumber, adoptPtr(page)); | 119 m_pages->set(pageNumber, adoptPtr(page)); |
120 } | 120 } |
121 | 121 |
122 // Fill in the whole page with the unknown glyph information. | 122 // Fill in the whole page with the unknown glyph information. |
123 for (unsigned i = 0; i < GlyphMetricsPage::size; i++) | 123 for (unsigned i = 0; i < GlyphMetricsPage::size; i++) |
124 page->setMetricsForIndex(i, unknownMetrics()); | 124 page->setMetricsForIndex(i, unknownMetrics()); |
125 | 125 |
126 return page; | 126 return page; |
127 } | 127 } |
128 | 128 |
129 } // namespace WebCore | 129 } // namespace blink |
130 | 130 |
131 #endif | 131 #endif |
OLD | NEW |