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

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

Issue 2458003002: Remove ASSERT_WITH_SECURITY_IMPLICATION. (Closed)
Patch Set: Minor formatting fix Created 4 years, 2 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/CSSImageGeneratorValue.cpp
diff --git a/third_party/WebKit/Source/core/css/CSSImageGeneratorValue.cpp b/third_party/WebKit/Source/core/css/CSSImageGeneratorValue.cpp
index 29d84212972450172ed5ca3c0cd8078dcb96c7ce..07b6c0c7c9877ed2132ef375c17f947753b9db4a 100644
--- a/third_party/WebKit/Source/core/css/CSSImageGeneratorValue.cpp
+++ b/third_party/WebKit/Source/core/css/CSSImageGeneratorValue.cpp
@@ -67,7 +67,7 @@ CSSImageGeneratorValue* CSSImageGeneratorValue::valueWithURLsMadeAbsolute() {
void CSSImageGeneratorValue::removeClient(const LayoutObject* layoutObject) {
ASSERT(layoutObject);
LayoutObjectSizeCountMap::iterator it = m_clients.find(layoutObject);
- ASSERT_WITH_SECURITY_IMPLICATION(it != m_clients.end());
+ SECURITY_DCHECK(it != m_clients.end());
IntSize removedImageSize;
SizeAndCount& sizeCount = it->value;

Powered by Google App Engine
This is Rietveld 408576698