| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2012 Google Inc. All rights reserved. | 2 * Copyright (c) 2012 Google Inc. All rights reserved. |
| 3 * Copyright (C) 2013 BlackBerry Limited. All rights reserved. | 3 * Copyright (C) 2013 BlackBerry Limited. 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 16 matching lines...) Expand all Loading... |
| 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 30 */ | 30 */ |
| 31 | 31 |
| 32 #include "platform/fonts/shaping/HarfBuzzShaper.h" | 32 #include "platform/fonts/shaping/HarfBuzzShaper.h" |
| 33 | 33 |
| 34 #include "platform/fonts/Font.h" | 34 #include "platform/fonts/Font.h" |
| 35 #include "platform/fonts/FontDescription.h" | 35 #include "platform/fonts/FontDescription.h" |
| 36 #include "platform/fonts/FontFallbackIterator.h" | 36 #include "platform/fonts/FontFallbackIterator.h" |
| 37 #include "platform/fonts/GlyphBuffer.h" | |
| 38 #include "platform/fonts/SmallCapsIterator.h" | 37 #include "platform/fonts/SmallCapsIterator.h" |
| 39 #include "platform/fonts/UTF16TextIterator.h" | 38 #include "platform/fonts/UTF16TextIterator.h" |
| 40 #include "platform/fonts/opentype/OpenTypeCapsSupport.h" | 39 #include "platform/fonts/opentype/OpenTypeCapsSupport.h" |
| 41 #include "platform/fonts/shaping/CaseMappingHarfBuzzBufferFiller.h" | 40 #include "platform/fonts/shaping/CaseMappingHarfBuzzBufferFiller.h" |
| 42 #include "platform/fonts/shaping/HarfBuzzFace.h" | 41 #include "platform/fonts/shaping/HarfBuzzFace.h" |
| 43 #include "platform/fonts/shaping/ShapeResultInlineHeaders.h" | 42 #include "platform/fonts/shaping/ShapeResultInlineHeaders.h" |
| 44 #include "platform/text/TextBreakIterator.h" | 43 #include "platform/text/TextBreakIterator.h" |
| 45 #include "wtf/Compiler.h" | 44 #include "wtf/Compiler.h" |
| 46 #include "wtf/MathExtras.h" | 45 #include "wtf/MathExtras.h" |
| 47 #include "wtf/PtrUtil.h" | 46 #include "wtf/PtrUtil.h" |
| (...skipping 654 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 702 shapeSegment(&rangeData, segmentRange, result.get()); | 701 shapeSegment(&rangeData, segmentRange, result.get()); |
| 703 } | 702 } |
| 704 return result.release(); | 703 return result.release(); |
| 705 } | 704 } |
| 706 | 705 |
| 707 PassRefPtr<ShapeResult> HarfBuzzShaper::shape(const Font* font, | 706 PassRefPtr<ShapeResult> HarfBuzzShaper::shape(const Font* font, |
| 708 TextDirection direction) const { | 707 TextDirection direction) const { |
| 709 return shape(font, direction, 0, m_textLength); | 708 return shape(font, direction, 0, m_textLength); |
| 710 } | 709 } |
| 711 } // namespace blink | 710 } // namespace blink |
| OLD | NEW |