Bug 37468: followup: Cleanup line terminators. r=me

DONTBUILD, since it's whitespace-only.

MozReview-Commit-ID: D61WzJbTgXZ
This commit is contained in:
Emilio Cobos Álvarez 2018-04-15 14:24:25 +02:00
Родитель 3cfe9af000
Коммит 7bce4fa96c
2 изменённых файлов: 7 добавлений и 7 удалений

Просмотреть файл

@ -289,8 +289,8 @@ SERVO_BINDING_FUNC(Servo_StyleRule_GetSelectorCount, void,
SERVO_BINDING_FUNC(Servo_StyleRule_SelectorMatchesElement, bool,
RawServoStyleRuleBorrowed, RawGeckoElementBorrowed,
uint32_t index, mozilla::CSSPseudoElementType pseudo_type)
SERVO_BINDING_FUNC(Servo_StyleRule_SetSelectorText, bool,
RawServoStyleSheetContentsBorrowed sheet,
SERVO_BINDING_FUNC(Servo_StyleRule_SetSelectorText, bool,
RawServoStyleSheetContentsBorrowed sheet,
RawServoStyleRuleBorrowed rule, const nsAString* text)
SERVO_BINDING_FUNC(Servo_ImportRule_GetHref, void,
RawServoImportRuleBorrowed rule, nsAString* result)

Просмотреть файл

@ -133,11 +133,11 @@ StyleSheet::HasUniqueInner() const
{
return mInner->mSheets.Length() == 1;
}
void
StyleSheet::AssertHasUniqueInner() const
{
MOZ_ASSERT(HasUniqueInner());
void
StyleSheet::AssertHasUniqueInner() const
{
MOZ_ASSERT(HasUniqueInner());
}
}