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

Unified Diff: third_party/WebKit/Source/core/css/CSSImageValue.h

Issue 2755493004: Replace ASSERT, ASSERT_NOT_REACHED, and RELEASE_ASSERT in core/css/ (Closed)
Patch Set: Replace ASSERT, ASSERT_NOT_REACHED, and RELEASE_ASSERT in core/css/ 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/CSSImageValue.h
diff --git a/third_party/WebKit/Source/core/css/CSSImageValue.h b/third_party/WebKit/Source/core/css/CSSImageValue.h
index 6105584ebd2f321c13afe95c4e9e9d0e9ed67aa6..9ac9b7b242c8131a26958d79872f7164a3415b63 100644
--- a/third_party/WebKit/Source/core/css/CSSImageValue.h
+++ b/third_party/WebKit/Source/core/css/CSSImageValue.h
@@ -56,7 +56,7 @@ class CORE_EXPORT CSSImageValue : public CSSValue {
bool isCachePending() const { return !m_cachedImage; }
StyleImage* cachedImage() const {
- ASSERT(!isCachePending());
+ DCHECK(!isCachePending());
return m_cachedImage.get();
}
StyleImage* cacheImage(

Powered by Google App Engine
This is Rietveld 408576698