| Index: third_party/WebKit/Source/core/html/HTMLFontElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLFontElement.cpp b/third_party/WebKit/Source/core/html/HTMLFontElement.cpp
|
| index 5dbd8c6ac1f3fe552dccbf13c5efe9066979fc0a..b7b433a1039d236be9345540869155682e40c3cb 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLFontElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLFontElement.cpp
|
| @@ -66,7 +66,7 @@ static bool parseFontSize(const CharacterType* characters, unsigned length, int&
|
| // Step 4
|
| if (position == end)
|
| return false;
|
| - ASSERT(position < end);
|
| + DCHECK_LT(position, end);
|
|
|
| // Step 5
|
| enum {
|
| @@ -180,7 +180,7 @@ bool HTMLFontElement::cssValueFromFontSizeNumber(const String& s, CSSValueID& si
|
| size = CSSValueWebkitXxxLarge;
|
| break;
|
| default:
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| }
|
| return true;
|
| }
|
|
|