Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(912)

Unified Diff: third_party/WebKit/Source/platform/fonts/shaping/CaseMappingHarfBuzzBufferFiller.cpp

Issue 2386333002: reflow comments in platform/fonts (Closed)
Patch Set: comments Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/fonts/shaping/CaseMappingHarfBuzzBufferFiller.cpp
diff --git a/third_party/WebKit/Source/platform/fonts/shaping/CaseMappingHarfBuzzBufferFiller.cpp b/third_party/WebKit/Source/platform/fonts/shaping/CaseMappingHarfBuzzBufferFiller.cpp
index d1adec443e552890fce22f8e5541adfcc62a4641..41e83913b2ce3a8280b9192a4172f3cf5f14c59d 100644
--- a/third_party/WebKit/Source/platform/fonts/shaping/CaseMappingHarfBuzzBufferFiller.cpp
+++ b/third_party/WebKit/Source/platform/fonts/shaping/CaseMappingHarfBuzzBufferFiller.cpp
@@ -51,7 +51,8 @@ CaseMappingHarfBuzzBufferFiller::CaseMappingHarfBuzzBufferFiller(
}
}
-// TODO(drott): crbug.com/623940 Fix lack of context sensitive case mapping here.
+// TODO(drott): crbug.com/623940 Fix lack of context sensitive case mapping
+// here.
void CaseMappingHarfBuzzBufferFiller::fillSlowCase(CaseMapIntend caseMapIntend,
AtomicString locale,
const UChar* buffer,
@@ -77,7 +78,8 @@ void CaseMappingHarfBuzzBufferFiller::fillSlowCase(CaseMapIntend caseMapIntend,
UChar32 codepoint = 0;
U16_NEXT(caseMappedChar.characters16(), j, caseMappedChar.length(),
codepoint);
- // Add all characters of the case mapping result at the same cluster position.
+ // Add all characters of the case mapping result at the same cluster
+ // position.
hb_buffer_add(m_harfBuzzBuffer, codepoint, charIndex);
}
charIndex = newCharIndex;

Powered by Google App Engine
This is Rietveld 408576698