| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2011 Google Inc. All rights reserved. | 2 * Copyright (c) 2011 Google 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 are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * 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 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 #include "platform/fonts/FontPlatformFeatures.h" | 35 #include "platform/fonts/FontPlatformFeatures.h" |
| 36 #include "platform/fonts/FontSmoothingMode.h" | 36 #include "platform/fonts/FontSmoothingMode.h" |
| 37 #include "platform/fonts/GlyphBuffer.h" | 37 #include "platform/fonts/GlyphBuffer.h" |
| 38 #include "platform/fonts/SimpleFontData.h" | 38 #include "platform/fonts/SimpleFontData.h" |
| 39 #include "platform/graphics/GraphicsContext.h" | 39 #include "platform/graphics/GraphicsContext.h" |
| 40 | 40 |
| 41 #include "third_party/skia/include/core/SkCanvas.h" | 41 #include "third_party/skia/include/core/SkCanvas.h" |
| 42 #include "third_party/skia/include/core/SkPaint.h" | 42 #include "third_party/skia/include/core/SkPaint.h" |
| 43 #include "third_party/skia/include/core/SkTypeface.h" | 43 #include "third_party/skia/include/core/SkTypeface.h" |
| 44 | 44 |
| 45 namespace WebCore { | 45 namespace blink { |
| 46 | 46 |
| 47 bool FontPlatformFeatures::canReturnFallbackFontsForComplexText() | 47 bool FontPlatformFeatures::canReturnFallbackFontsForComplexText() |
| 48 { | 48 { |
| 49 return true; | 49 return true; |
| 50 } | 50 } |
| 51 | 51 |
| 52 bool FontPlatformFeatures::canExpandAroundIdeographsInComplexText() | 52 bool FontPlatformFeatures::canExpandAroundIdeographsInComplexText() |
| 53 { | 53 { |
| 54 return true; | 54 return true; |
| 55 } | 55 } |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 // See comment in FontHarfBuzz.cpp::paintGlyphs() for more details. | 165 // See comment in FontHarfBuzz.cpp::paintGlyphs() for more details. |
| 166 paint.setLooper(0); | 166 paint.setLooper(0); |
| 167 } | 167 } |
| 168 | 168 |
| 169 gc->drawPosText(glyphs, numGlyphs * sizeof(Glyph), pos, textRect, paint)
; | 169 gc->drawPosText(glyphs, numGlyphs * sizeof(Glyph), pos, textRect, paint)
; |
| 170 } | 170 } |
| 171 if (font->platformData().orientation() == Vertical) | 171 if (font->platformData().orientation() == Vertical) |
| 172 gc->restore(); | 172 gc->restore(); |
| 173 } | 173 } |
| 174 | 174 |
| 175 } // namespace WebCore | 175 } // namespace blink |
| OLD | NEW |