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

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

Issue 2755493004: Replace ASSERT, ASSERT_NOT_REACHED, and RELEASE_ASSERT in core/css/ (Closed)
Patch Set: All windows error are Resolved now. Created 3 years, 9 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/CSSCrossfadeValue.cpp
diff --git a/third_party/WebKit/Source/core/css/CSSCrossfadeValue.cpp b/third_party/WebKit/Source/core/css/CSSCrossfadeValue.cpp
index 4aabbb8e1ef4d62277068610686aaa60340e7df4..33514f6952fdfea7a9e506ddf4db4d8f5d3af760 100644
--- a/third_party/WebKit/Source/core/css/CSSCrossfadeValue.cpp
+++ b/third_party/WebKit/Source/core/css/CSSCrossfadeValue.cpp
@@ -41,7 +41,7 @@ static bool subimageIsPending(CSSValue* value) {
if (value->isImageGeneratorValue())
return toCSSImageGeneratorValue(value)->isPending();
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return false;
}
@@ -54,7 +54,7 @@ static bool subimageKnownToBeOpaque(CSSValue* value,
if (value->isImageGeneratorValue())
return toCSSImageGeneratorValue(value)->knownToBeOpaque(layoutObject);
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return false;
}
@@ -80,7 +80,7 @@ static ImageResourceContent* cachedImageForCSSValue(CSSValue* value,
return nullptr;
}
- ASSERT_NOT_REACHED();
+ NOTREACHED();
return nullptr;
}

Powered by Google App Engine
This is Rietveld 408576698