| Index: third_party/WebKit/Source/platform/fonts/FontDescription.cpp
|
| diff --git a/third_party/WebKit/Source/platform/fonts/FontDescription.cpp b/third_party/WebKit/Source/platform/fonts/FontDescription.cpp
|
| index 6d1672bbdf190b20496466242dbd6fa84232a29c..060ef8e2cc658c2ab39e77a1e91aa480d66a5ad4 100644
|
| --- a/third_party/WebKit/Source/platform/fonts/FontDescription.cpp
|
| +++ b/third_party/WebKit/Source/platform/fonts/FontDescription.cpp
|
| @@ -126,7 +126,7 @@ FontWeight FontDescription::LighterWeight(FontWeight weight) {
|
| case kFontWeight900:
|
| return kFontWeight700;
|
| }
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return kFontWeightNormal;
|
| }
|
|
|
| @@ -147,7 +147,7 @@ FontWeight FontDescription::BolderWeight(FontWeight weight) {
|
| case kFontWeight900:
|
| return kFontWeight900;
|
| }
|
| - ASSERT_NOT_REACHED();
|
| + NOTREACHED();
|
| return kFontWeightNormal;
|
| }
|
|
|
|
|