Index: third_party/WebKit/Source/platform/fonts/win/FontPlatformDataWin.cpp |
diff --git a/third_party/WebKit/Source/platform/fonts/win/FontPlatformDataWin.cpp b/third_party/WebKit/Source/platform/fonts/win/FontPlatformDataWin.cpp |
index f923be4983bae512a41e3753798164a4c3885946..855ecd0146db5d4cea6ef042d62d65ce7c7d35fb 100644 |
--- a/third_party/WebKit/Source/platform/fonts/win/FontPlatformDataWin.cpp |
+++ b/third_party/WebKit/Source/platform/fonts/win/FontPlatformDataWin.cpp |
@@ -73,8 +73,9 @@ void FontPlatformData::setupPaint(SkPaint* paint, float, const Font*) const { |
// As most tests run without font smoothing we enable it for tests |
// to ensure we get good test coverage matching the more common |
// smoothing enabled behavior. |
- && ((textFlags & SkPaint::kAntiAlias_Flag) || |
- LayoutTestSupport::isRunningLayoutTest())) |
+ && |
+ ((textFlags & SkPaint::kAntiAlias_Flag) || |
+ LayoutTestSupport::isRunningLayoutTest())) |
flags |= SkPaint::kSubpixelText_Flag; |
SkASSERT(!(textFlags & ~textFlagsMask)); |