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

Unified Diff: third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp

Issue 2846283002: Replace ASSERT_NOT_REACHED with NOTREACHED in the rest of core/ (Closed)
Patch Set: rebase Created 3 years, 8 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/core/css/ComputedStyleCSSValueMapping.cpp
diff --git a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
index a01d69e0839f12a2cad5a875720a675e92694ef3..9d4e5c14c0e8de4d66f367f8eff7ae977eaba06c 100644
--- a/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
+++ b/third_party/WebKit/Source/core/css/ComputedStyleCSSValueMapping.cpp
@@ -179,7 +179,7 @@ static CSSValue* ValueForFillSourceType(EMaskSourceType type) {
return CSSIdentifierValue::Create(CSSValueLuminance);
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return nullptr;
}
@@ -284,7 +284,7 @@ static CSSValue* ValueForPositionOffset(const ComputedStyle& style,
(layout_box->OffsetHeight() + client_offset.Height());
break;
default:
- ASSERT_NOT_REACHED();
+ NOTREACHED();
}
return ZoomAdjustedPixelValue(position, style);
}

Powered by Google App Engine
This is Rietveld 408576698