Index: third_party/WebKit/Source/platform/fonts/skia/SkiaTextMetrics.cpp |
diff --git a/third_party/WebKit/Source/platform/fonts/skia/SkiaTextMetrics.cpp b/third_party/WebKit/Source/platform/fonts/skia/SkiaTextMetrics.cpp |
index 62c23b20828ea52cba1e498ad0bca5b385f93f61..1f99d670705356176b455aa782c8d9de808927f7 100644 |
--- a/third_party/WebKit/Source/platform/fonts/skia/SkiaTextMetrics.cpp |
+++ b/third_party/WebKit/Source/platform/fonts/skia/SkiaTextMetrics.cpp |
@@ -51,7 +51,8 @@ void SkiaTextMetrics::getGlyphExtentsForHarfBuzz(hb_codepoint_t codepoint, |
skBounds.set(ir); |
} |
- // Invert y-axis because Skia is y-grows-down but we set up HarfBuzz to be y-grows-up. |
+ // Invert y-axis because Skia is y-grows-down but we set up HarfBuzz to be |
+ // y-grows-up. |
extents->x_bearing = SkiaScalarToHarfBuzzPosition(skBounds.fLeft); |
extents->y_bearing = SkiaScalarToHarfBuzzPosition(-skBounds.fTop); |
extents->width = SkiaScalarToHarfBuzzPosition(skBounds.width()); |